зеркало из https://github.com/github/ruby.git
42 строки
1009 B
Ruby
42 строки
1009 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "helper"
|
|
|
|
class TestGemResolverActivationRequest < Gem::TestCase
|
|
def setup
|
|
super
|
|
|
|
@dep = Gem::Resolver::DependencyRequest.new dep("a", ">= 0"), nil
|
|
|
|
source = Gem::Source::Local.new
|
|
platform = Gem::Platform::RUBY
|
|
|
|
@a3 = Gem::Resolver::IndexSpecification.new nil, "a", v(3), source, platform
|
|
|
|
@req = Gem::Resolver::ActivationRequest.new @a3, @dep
|
|
end
|
|
|
|
def test_development_eh
|
|
refute @req.development?
|
|
|
|
dep_req = Gem::Resolver::DependencyRequest.new dep("a", ">= 0", :development), nil
|
|
|
|
act_req = Gem::Resolver::ActivationRequest.new @a3, dep_req
|
|
|
|
assert act_req.development?
|
|
end
|
|
|
|
def test_inspect
|
|
assert_match "a-3", @req.inspect
|
|
assert_match "from a (>= 0)", @req.inspect
|
|
end
|
|
|
|
def test_installed_eh
|
|
v_spec = Gem::Resolver::VendorSpecification.new nil, @a3
|
|
|
|
@req = Gem::Resolver::ActivationRequest.new v_spec, @dep
|
|
|
|
assert @req.installed?
|
|
end
|
|
end
|