mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 21:14:23 +02:00
Update to RubyGems 1.3.7.pre.1
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d0e5a34ac7
commit
372dcece3f
64 changed files with 759 additions and 240 deletions
|
@ -27,7 +27,7 @@ class TestGemCommandsFetchCommand < RubyGemTestCase
|
|||
end
|
||||
|
||||
assert File.exist?(File.join(@tempdir, @a2.file_name)),
|
||||
"#{@a2.full_name} fetched"
|
||||
"#{@a2.full_name} not fetched"
|
||||
end
|
||||
|
||||
def test_execute_prerelease
|
||||
|
@ -52,5 +52,25 @@ class TestGemCommandsFetchCommand < RubyGemTestCase
|
|||
"#{@a2_pre.full_name} not fetched"
|
||||
end
|
||||
|
||||
def test_execute_version
|
||||
util_setup_fake_fetcher
|
||||
util_setup_spec_fetcher @a1, @a2
|
||||
|
||||
@fetcher.data["#{@gem_repo}gems/#{@a1.file_name}"] =
|
||||
File.read(File.join(@gemhome, 'cache', @a1.file_name))
|
||||
|
||||
@cmd.options[:args] = [@a2.name]
|
||||
@cmd.options[:version] = Gem::Requirement.new '1'
|
||||
|
||||
use_ui @ui do
|
||||
Dir.chdir @tempdir do
|
||||
@cmd.execute
|
||||
end
|
||||
end
|
||||
|
||||
assert File.exist?(File.join(@tempdir, @a1.file_name)),
|
||||
"#{@a1.full_name} not fetched"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue