summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_stub_specification.rb
blob: 6feb96eb4f7f13abcb1b762ad331abf2da02bac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require "rubygems/test_case"
require "rubygems/stub_specification"

class TestStubSpecification < Gem::TestCase
  SPECIFICATIONS = File.expand_path(File.join("..", "specifications"), __FILE__)
  FOO = File.join SPECIFICATIONS, "foo-0.0.1.gemspec"
  BAR = File.join SPECIFICATIONS, "bar-0.0.2.gemspec"

  def test_basic
    stub = Gem::StubSpecification.new(FOO)
    assert_equal "foo", stub.name
    assert_equal Gem::Version.new("0.0.1"), stub.version
    assert_equal Gem::Platform.new("mswin32"), stub.platform
    assert_equal ["lib", "lib/f oo/ext"], stub.require_paths
  end

  def test_missing_stubline
    stub = Gem::StubSpecification.new(BAR)
    assert_equal "bar", stub.name
    assert_equal Gem::Version.new("0.0.2"), stub.version
    assert_equal Gem::Platform.new("ruby"), stub.platform
    assert_equal ["lib"], stub.require_paths
  end

  def test_to_spec
    stub = Gem::StubSpecification.new(FOO)
    assert stub.to_spec.is_a?(Gem::Specification)
    assert_equal "foo", stub.to_spec.name
  end
end