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_resolver_git_specification.rb
drbrain 73fc703f7c * lib/rubygems: Update to RubyGems master 66e5c39. Notable changes:
Implement gem.deps.rb (Gemfile) .lock support

  Fixed `gem uninstall` for a relative directory in GEM_HOME.

* test/rubygems:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-11-30 23:27:52 +00:00

84 lines
1.8 KiB
Ruby

require 'rubygems/test_case'
class TestGemResolverGitSpecification < Gem::TestCase
def setup
super
@set = Gem::Resolver::GitSet.new
@spec = Gem::Specification.new 'a', 1
end
def test_equals2
g_spec_a = Gem::Resolver::GitSpecification.new @set, @spec
assert_equal g_spec_a, g_spec_a
spec_b = Gem::Specification.new 'b', 1
g_spec_b = Gem::Resolver::GitSpecification.new @set, spec_b
refute_equal g_spec_a, g_spec_b
g_set = Gem::Resolver::GitSet.new
g_spec_s = Gem::Resolver::GitSpecification.new g_set, @spec
refute_equal g_spec_a, g_spec_s
i_set = Gem::Resolver::IndexSet.new
source = Gem::Source.new @gem_repo
i_spec = Gem::Resolver::IndexSpecification.new(
i_set, 'a', v(1), source, Gem::Platform::RUBY)
refute_equal g_spec_a, i_spec
end
def test_install
git_gem 'a', 1
git_spec = Gem::Resolver::GitSpecification.new @set, @spec
called = false
git_spec.install({}) do |installer|
called = installer
end
assert called
end
# functional test for Gem::Ext::Builder
def test_install_extension
name, _, repository, = git_gem 'a', 1 do |s|
s.extensions << 'ext/extconf.rb'
end
Dir.chdir 'git/a' do
FileUtils.mkdir_p 'ext/lib'
open 'ext/extconf.rb', 'w' do |io|
io.puts 'require "mkmf"'
io.puts 'create_makefile "a"'
end
FileUtils.touch 'ext/lib/b.rb'
system @git, 'add', 'ext/extconf.rb'
system @git, 'add', 'ext/lib/b.rb'
system @git, 'commit', '--quiet', '-m', 'Add extension files'
end
source = Gem::Source::Git.new name, repository, 'master', true
spec = source.specs.first
git_spec = Gem::Resolver::GitSpecification.new @set, spec, source
git_spec.install({})
assert_path_exists File.join git_spec.spec.extension_install_dir, 'b.rb'
end
end