From 9694bb8cac12969300692dac5a1cf7aa4e3a46cd Mon Sep 17 00:00:00 2001 From: drbrain Date: Thu, 29 Nov 2012 06:52:18 +0000 Subject: * lib/rubygems*: Updated to RubyGems 2.0 * test/rubygems*: ditto. * common.mk (prelude): Updated for RubyGems 2.0 source rearrangement. * tool/change_maker.rb: Allow invalid UTF-8 characters in source files. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rubygems/test_gem_commands_fetch_command.rb | 39 ++++++++++++------------ 1 file changed, 19 insertions(+), 20 deletions(-) (limited to 'test/rubygems/test_gem_commands_fetch_command.rb') diff --git a/test/rubygems/test_gem_commands_fetch_command.rb b/test/rubygems/test_gem_commands_fetch_command.rb index 9017a43b80..561075aac5 100644 --- a/test/rubygems/test_gem_commands_fetch_command.rb +++ b/test/rubygems/test_gem_commands_fetch_command.rb @@ -26,8 +26,8 @@ class TestGemCommandsFetchCommand < Gem::TestCase end end - assert File.exist?(File.join(@tempdir, @a2.file_name)), - "#{@a2.full_name} not fetched" + assert_path_exists(File.join(@tempdir, @a2.file_name), + "#{@a2.full_name} not fetched") end def test_execute_prerelease @@ -49,19 +49,23 @@ class TestGemCommandsFetchCommand < Gem::TestCase end end - assert File.exist?(File.join(@tempdir, @a2_pre.file_name)), - "#{@a2_pre.full_name} not fetched" + assert_path_exists(File.join(@tempdir, @a2_pre.file_name), + "#{@a2_pre.full_name} not fetched") end - def test_execute_version - util_setup_fake_fetcher - util_setup_spec_fetcher @a1, @a2 + def test_execute_specific_prerelease + util_setup_fake_fetcher true + util_clear_gems + util_setup_spec_fetcher @a2, @a2_pre - @fetcher.data["#{@gem_repo}gems/#{@a1.file_name}"] = - File.read(@a1.cache_file) + @fetcher.data["#{@gem_repo}gems/#{@a2.file_name}"] = + File.read(@a2.cache_file) + @fetcher.data["#{@gem_repo}gems/#{@a2_pre.file_name}"] = + File.read(@a2_pre.cache_file) @cmd.options[:args] = [@a2.name] - @cmd.options[:version] = Gem::Requirement.new '1' + @cmd.options[:prerelease] = true + @cmd.options[:version] = "2.a" use_ui @ui do Dir.chdir @tempdir do @@ -69,16 +73,11 @@ class TestGemCommandsFetchCommand < Gem::TestCase end end - assert File.exist?(File.join(@tempdir, @a1.file_name)), - "#{@a1.full_name} not fetched" + assert_path_exists(File.join(@tempdir, @a2_pre.file_name), + "#{@a2_pre.full_name} not fetched") end - def test_execute_handles_sources_properly - repo = "http://gems.example.com" - @uri = URI.parse repo - - Gem.sources.replace [repo] - + def test_execute_version util_setup_fake_fetcher util_setup_spec_fetcher @a1, @a2 @@ -94,8 +93,8 @@ class TestGemCommandsFetchCommand < Gem::TestCase end end - assert File.exist?(File.join(@tempdir, @a1.file_name)), - "#{@a1.full_name} not fetched" + assert_path_exists(File.join(@tempdir, @a1.file_name), + "#{@a1.full_name} not fetched") end end -- cgit v1.2.3