summaryrefslogtreecommitdiff
path: root/trunk/test/rubygems/test_gem_local_remote_options.rb
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:13:14 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:13:14 +0000
commitd0233291bc8a5068e52c69c210e5979e5324b5bc (patch)
tree7d9459449c33792c63eeb7baa071e76352e0baab /trunk/test/rubygems/test_gem_local_remote_options.rb
parent0dc342de848a642ecce8db697b8fecd83a63e117 (diff)
parent72eaacaa15256ab95c3b52ea386f88586fb9da40 (diff)
re-adding tag v1_9_0_4 as an alias of trunk@18848v1_9_0_4
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_9_0_4@18849 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'trunk/test/rubygems/test_gem_local_remote_options.rb')
-rw-r--r--trunk/test/rubygems/test_gem_local_remote_options.rb85
1 files changed, 0 insertions, 85 deletions
diff --git a/trunk/test/rubygems/test_gem_local_remote_options.rb b/trunk/test/rubygems/test_gem_local_remote_options.rb
deleted file mode 100644
index e676c94f21..0000000000
--- a/trunk/test/rubygems/test_gem_local_remote_options.rb
+++ /dev/null
@@ -1,85 +0,0 @@
-require 'test/unit'
-require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
-require 'rubygems/local_remote_options'
-require 'rubygems/command'
-
-class TestGemLocalRemoteOptions < RubyGemTestCase
-
- def setup
- super
-
- @cmd = Gem::Command.new 'dummy', 'dummy'
- @cmd.extend Gem::LocalRemoteOptions
- end
-
- def test_add_local_remote_options
- @cmd.add_local_remote_options
-
- args = %w[-l -r -b -B 10 --source http://gems.example.com -p --update-sources]
- assert @cmd.handles?(args)
- end
-
- def test_local_eh
- assert_equal false, @cmd.local?
-
- @cmd.options[:domain] = :local
-
- assert_equal true, @cmd.local?
-
- @cmd.options[:domain] = :both
-
- assert_equal true, @cmd.local?
- end
-
- def test_remote_eh
- assert_equal false, @cmd.remote?
-
- @cmd.options[:domain] = :remote
-
- assert_equal true, @cmd.remote?
-
- @cmd.options[:domain] = :both
-
- assert_equal true, @cmd.remote?
- end
-
- def test_source_option
- @cmd.add_source_option
-
- s1 = URI.parse 'http://more-gems.example.com/'
- s2 = URI.parse 'http://even-more-gems.example.com/'
- s3 = URI.parse 'http://other-gems.example.com/some_subdir'
-
- @cmd.handle_options %W[--source #{s1} --source #{s2} --source #{s3}]
-
- assert_equal [s1.to_s, s2.to_s, "#{s3}/"], Gem.sources
- end
-
- def test_update_sources_option
- @cmd.add_update_sources_option
-
- Gem.configuration.update_sources = false
-
- @cmd.handle_options %W[--update-sources]
-
- assert_equal true, Gem.configuration.update_sources
-
- @cmd.handle_options %W[--no-update-sources]
-
- assert_equal false, Gem.configuration.update_sources
- end
-
- def test_source_option_bad
- @cmd.add_source_option
-
- s1 = 'htp://more-gems.example.com'
-
- assert_raise OptionParser::InvalidArgument do
- @cmd.handle_options %W[--source #{s1}]
- end
-
- assert_equal [@gem_repo], Gem.sources
- end
-
-end
-