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_source_vendor.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
912 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require_relative "helper"
require "rubygems/source"
class TestGemSourceVendor < Gem::TestCase
def test_initialize
source = Gem::Source::Vendor.new "vendor/foo"
assert_equal "vendor/foo", source.uri
end
def test_spaceship
vendor = Gem::Source::Vendor.new "vendor/foo"
remote = Gem::Source.new @gem_repo
git = Gem::Source::Git.new "a", "a", "master"
installed = Gem::Source::Installed.new
assert_equal(0, vendor.<=>(vendor), "vendor <=> vendor")
assert_equal(1, vendor.<=>(remote), "vendor <=> remote")
assert_equal(-1, remote.<=>(vendor), "remote <=> vendor")
assert_equal(1, vendor.<=>(git), "vendor <=> git")
assert_equal(-1, git.<=>(vendor), "git <=> vendor")
assert_equal(1, vendor.<=>(installed), "vendor <=> installed")
assert_equal(-1, installed.<=>(vendor), "installed <=> vendor")
end
end