aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_gem_commands_install_command.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-17 21:17:56 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-17 21:17:56 +0000
commit0ebe38eedd3b0b0771f57e1d4a85d472a1b6b64f (patch)
tree3fd875633a962ad584d787f536e5ced1697e058e /test/rubygems/test_gem_commands_install_command.rb
parent02dc9ae773d458be60f3fa656d5bb50f41a1c9e2 (diff)
downloadruby-0ebe38eedd3b0b0771f57e1d4a85d472a1b6b64f.tar.gz
Revert r35370 due to bad source branch
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rubygems/test_gem_commands_install_command.rb')
-rw-r--r--test/rubygems/test_gem_commands_install_command.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/rubygems/test_gem_commands_install_command.rb b/test/rubygems/test_gem_commands_install_command.rb
index 2215d4d4ab..bd61db5e45 100644
--- a/test/rubygems/test_gem_commands_install_command.rb
+++ b/test/rubygems/test_gem_commands_install_command.rb
@@ -3,7 +3,6 @@ require 'rubygems/commands/install_command'
begin
gem "rdoc"
- gem "json"
rescue Gem::LoadError
# ignore
end
@@ -178,38 +177,6 @@ class TestGemCommandsInstallCommand < Gem::TestCase
assert_match(/ould not find a valid gem 'nonexistent'/, @ui.error)
end
- def test_execute_bad_source
- util_setup_fake_fetcher
- util_setup_spec_fetcher
-
- # This is needed because we need to exercise the cache path
- # within SpecFetcher
- path = File.join Gem.user_home, '.gem', 'specs', "not-there.nothing%80",
- "latest_specs.4.8"
-
- FileUtils.mkdir_p File.dirname(path)
-
- File.open path, "w" do |f|
- f.write Marshal.dump([])
- end
-
- Gem.sources.replace ["http://not-there.nothing"]
-
- @cmd.options[:args] = %w[nonexistent]
-
- use_ui @ui do
- e = assert_raises Gem::SystemExitException do
- @cmd.execute
- end
- assert_equal 2, e.exit_code
- end
-
- errs = @ui.error.split("\n")
-
- assert_match(/WARNING: Error fetching data/, errs.shift)
- assert_match(/ould not find a valid gem 'nonexistent'/, errs.shift)
- end
-
def test_execute_nonexistent_with_hint
misspelled = "nonexistent_with_hint"
correctly_spelled = "non_existent_with_hint"