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_dependency_resolution_error.rb
Takuya Noguchi d7ffd3fea4
RubyGems: Enable Style/StringLiterals cop
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2022-07-22 12:07:23 +09:00

26 lines
629 B
Ruby

# frozen_string_literal: true
require_relative "helper"
class TestGemDependencyResolutionError < Gem::TestCase
def setup
super
@DR = Gem::Resolver
@spec = util_spec "a", 2
@a1_req = @DR::DependencyRequest.new dep("a", "= 1"), nil
@a2_req = @DR::DependencyRequest.new dep("a", "= 2"), nil
@activated = @DR::ActivationRequest.new @spec, @a2_req
@conflict = @DR::Conflict.new @a1_req, @activated
@error = Gem::DependencyResolutionError.new @conflict
end
def test_message
assert_match %r{^conflicting dependencies a \(= 1\) and a \(= 2\)$},
@error.message
end
end