1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/rubygems/test_gem_resolver_activation_request.rb
drbrain a7fa4d5d9a * lib/rubygems: Update to RubyGems master 6a3d9f9. Changes include:
Compatibly renamed Gem::DependencyResolver to Gem::Resolver.

  Added support for git gems in gem.deps.rb and Gemfile.

  Fixed resolver bugs.

* test/rubygems: ditto.

* lib/rubygems/LICENSE.txt:  Updated to license from RubyGems trunk.
  [ruby-trunk - Bug #9086]

* lib/rubygems/commands/which_command.rb:  RubyGems now indicates
  failure when any file is missing.  [ruby-trunk - Bug #9004]

* lib/rubygems/ext/builder:  Extensions are now installed into the
  extension install directory and the first directory in the require
  path from the gem.  This allows backwards compatibility with msgpack
  and other gems that calculate full require paths.
  [ruby-trunk - Bug #9106]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43714 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-11-19 00:34:13 +00:00

63 lines
1.5 KiB
Ruby

require 'rubygems/test_case'
class TestGemResolverActivationRequest < Gem::TestCase
def setup
super
@DR = Gem::Resolver
@dep = @DR::DependencyRequest.new dep('a', '>= 0'), nil
source = Gem::Source::Local.new
platform = Gem::Platform::RUBY
@a1 = @DR::IndexSpecification.new nil, 'a', v(1), source, platform
@a2 = @DR::IndexSpecification.new nil, 'a', v(2), source, platform
@a3 = @DR::IndexSpecification.new nil, 'a', v(3), source, platform
@req = @DR::ActivationRequest.new @a3, @dep, [@a1, @a2]
end
def test_inspect
assert_match 'a-3', @req.inspect
assert_match 'from a (>= 0)', @req.inspect
assert_match '(others possible: a-1, a-2)', @req.inspect
end
def test_inspect_legacy
req = @DR::ActivationRequest.new @a3, @dep, true
assert_match '(others possible)', req.inspect
req = @DR::ActivationRequest.new @a3, @dep, false
refute_match '(others possible)', req.inspect
end
def test_installed_eh
v_spec = Gem::Resolver::VendorSpecification.new nil, @a3
@req = @DR::ActivationRequest.new v_spec, @dep, [@a1, @a2]
assert @req.installed?
end
def test_others_possible_eh
assert @req.others_possible?
req = @DR::ActivationRequest.new @a3, @dep, []
refute req.others_possible?
req = @DR::ActivationRequest.new @a3, @dep, true
assert req.others_possible?
req = @DR::ActivationRequest.new @a3, @dep, false
refute req.others_possible?
end
end