mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5307d803f5
in this commit: RubyGems now automatically checks for gem.deps.rb or Gemfile when running ruby executables. This behavior is similar to `bundle exec rake`. This change may be reverted before Ruby 2.1.0 if too many bugs are found. * test/rubygems: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
45 lines
1.4 KiB
Ruby
45 lines
1.4 KiB
Ruby
require 'rubygems/test_case'
|
|
|
|
class TestGemImpossibleDependenciesError < Gem::TestCase
|
|
|
|
def test_message_conflict
|
|
request = dependency_request dep('net-ssh', '>= 2.0.13'), 'rye', '0.9.8'
|
|
|
|
conflicts = []
|
|
|
|
# These conflicts are lies as their dependencies does not have the correct
|
|
# requested-by entries, but they are suitable for testing the message.
|
|
# See #485 to construct a correct conflict.
|
|
net_ssh_2_2_2 =
|
|
dependency_request dep('net-ssh', '>= 2.6.5'), 'net-ssh', '2.2.2', request
|
|
net_ssh_2_6_5 =
|
|
dependency_request dep('net-ssh', '~> 2.2.2'), 'net-ssh', '2.6.5', request
|
|
|
|
conflict1 = Gem::Resolver::Conflict.new \
|
|
net_ssh_2_6_5, net_ssh_2_6_5.requester
|
|
|
|
conflict2 = Gem::Resolver::Conflict.new \
|
|
net_ssh_2_2_2, net_ssh_2_2_2.requester
|
|
|
|
conflicts << [net_ssh_2_6_5.requester.spec, conflict1]
|
|
conflicts << [net_ssh_2_2_2.requester.spec, conflict2]
|
|
|
|
error = Gem::ImpossibleDependenciesError.new request, conflicts
|
|
|
|
expected = <<-EXPECTED
|
|
rye-0.9.8 requires net-ssh (>= 2.0.13) but it conflicted:
|
|
Activated net-ssh-2.6.5 via:
|
|
net-ssh-2.6.5 (>= 2.0.13), rye-0.9.8 (= 0.9.8)
|
|
instead of (~> 2.2.2) via:
|
|
net-ssh-2.6.5 (>= 2.0.13), rye-0.9.8 (= 0.9.8)
|
|
Activated net-ssh-2.2.2 via:
|
|
net-ssh-2.2.2 (>= 2.0.13), rye-0.9.8 (= 0.9.8)
|
|
instead of (>= 2.6.5) via:
|
|
net-ssh-2.2.2 (>= 2.0.13), rye-0.9.8 (= 0.9.8)
|
|
EXPECTED
|
|
|
|
assert_equal expected, error.message
|
|
end
|
|
|
|
end
|
|
|