aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_gem_source_vendor.rb
blob: 17403a1fc8c68901a911263abf76cc1402740ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rubygems/test_case'
require 'rubygems/source'

class TestGemSourceVendor < Gem::TestCase

  def test_initialize
    source = Gem::Source::Vendor.new 'vendor/foo'

    assert_equal 'vendor/foo', source.uri
  end

end