Updated RubySpec submodule to 9f66d0b1.
[rbx.git] / test / rubygems / test_gem_commands_server_command.rb
blob2985b036d88040afc0335e2bf6cbfefc1ad9c4f9
1 require 'test/unit'
2 require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
3 require 'rubygems/commands/server_command'
5 class TestGemCommandsServerCommand < RubyGemTestCase
7   def setup
8     super
10     @cmd = Gem::Commands::ServerCommand.new
11   end
13   def test_handle_options
14     @cmd.send :handle_options, %w[-p 8808 --no-daemon]
16     assert_equal false, @cmd.options[:daemon]
17     assert_equal @gemhome, @cmd.options[:gemdir]
18     assert_equal 8808, @cmd.options[:port]
20     @cmd.send :handle_options, %w[-p 9999 -d /nonexistent --daemon]
22     assert_equal true, @cmd.options[:daemon]
23     assert_equal File.expand_path('/nonexistent'), @cmd.options[:gemdir]
24     assert_equal 9999, @cmd.options[:port]
25   end
26 end