mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
77 lines
1.5 KiB
Ruby
77 lines
1.5 KiB
Ruby
|
require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
|
||
|
require 'rubygems/command'
|
||
|
require 'rubygems/version_option'
|
||
|
|
||
|
class TestGemVersionOption < RubyGemTestCase
|
||
|
|
||
|
def setup
|
||
|
super
|
||
|
|
||
|
@cmd = Gem::Command.new 'dummy', 'dummy'
|
||
|
@cmd.extend Gem::VersionOption
|
||
|
end
|
||
|
|
||
|
def test_add_platform_option
|
||
|
@cmd.add_platform_option
|
||
|
|
||
|
assert @cmd.handles?(%w[--platform x86-darwin])
|
||
|
end
|
||
|
|
||
|
def test_add_version_option
|
||
|
@cmd.add_version_option
|
||
|
|
||
|
assert @cmd.handles?(%w[--version >1])
|
||
|
end
|
||
|
|
||
|
def test_platform_option
|
||
|
@cmd.add_platform_option
|
||
|
|
||
|
@cmd.handle_options %w[--platform x86-freebsd6 --platform x86-freebsd7]
|
||
|
|
||
|
expected = [
|
||
|
Gem::Platform::RUBY,
|
||
|
Gem::Platform.new('x86-freebsd6'),
|
||
|
Gem::Platform.new('x86-freebsd7'),
|
||
|
]
|
||
|
|
||
|
assert_equal expected, Gem.platforms
|
||
|
end
|
||
|
|
||
|
def test_platform_option_ruby
|
||
|
@cmd.add_platform_option
|
||
|
|
||
|
@cmd.handle_options %w[--platform ruby]
|
||
|
|
||
|
expected = [
|
||
|
Gem::Platform::RUBY
|
||
|
]
|
||
|
|
||
|
assert_equal expected, Gem.platforms
|
||
|
end
|
||
|
|
||
|
def test_platform_option_twice
|
||
|
@cmd.add_platform_option
|
||
|
|
||
|
@cmd.handle_options %w[--platform x86-freebsd6 --platform x86-freebsd-6]
|
||
|
|
||
|
expected = [
|
||
|
Gem::Platform::RUBY,
|
||
|
Gem::Platform.new('x86-freebsd6'),
|
||
|
]
|
||
|
|
||
|
assert_equal expected, Gem.platforms
|
||
|
end
|
||
|
|
||
|
def test_version_option
|
||
|
@cmd.add_version_option
|
||
|
|
||
|
@cmd.handle_options %w[--version >1]
|
||
|
|
||
|
expected = { :version => Gem::Requirement.new('> 1'), :args => [] }
|
||
|
|
||
|
assert_equal expected, @cmd.options
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|