summaryrefslogtreecommitdiff
path: root/trunk/test/rubygems/test_gem_commands_fetch_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test/rubygems/test_gem_commands_fetch_command.rb')
-rw-r--r--trunk/test/rubygems/test_gem_commands_fetch_command.rb55
1 files changed, 0 insertions, 55 deletions
diff --git a/trunk/test/rubygems/test_gem_commands_fetch_command.rb b/trunk/test/rubygems/test_gem_commands_fetch_command.rb
deleted file mode 100644
index eaa13595b7..0000000000
--- a/trunk/test/rubygems/test_gem_commands_fetch_command.rb
+++ /dev/null
@@ -1,55 +0,0 @@
-require 'test/unit'
-require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
-require 'rubygems/package'
-require 'rubygems/security'
-require 'rubygems/commands/fetch_command'
-
-class TestGemCommandsFetchCommand < RubyGemTestCase
-
- def setup
- super
-
- @cmd = Gem::Commands::FetchCommand.new
- end
-
- def test_execute
- util_setup_fake_fetcher
- util_setup_spec_fetcher @a2
-
- @fetcher.data["#{@gem_repo}gems/#{@a2.full_name}.gem"] =
- File.read(File.join(@gemhome, 'cache', "#{@a2.full_name}.gem"))
-
- @cmd.options[:args] = [@a2.name]
-
- use_ui @ui do
- Dir.chdir @tempdir do
- @cmd.execute
- end
- end
-
- assert File.exist?(File.join(@tempdir, "#{@a2.full_name}.gem")),
- "#{@a2.full_name} fetched"
- end
-
- def test_execute_legacy
- util_setup_fake_fetcher
- util_setup_source_info_cache @a2
-
- @fetcher.data["#{@gem_repo}yaml"] = ''
- @fetcher.data["#{@gem_repo}gems/#{@a2.full_name}.gem"] =
- File.read(File.join(@gemhome, 'cache', "#{@a2.full_name}.gem"))
-
- @cmd.options[:args] = [@a2.name]
-
- use_ui @ui do
- Dir.chdir @tempdir do
- @cmd.execute
- end
- end
-
- assert File.exist?(File.join(@tempdir, "#{@a2.full_name}.gem")),
- "#{@a2.full_name} fetched"
- end
-
-end
-