mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to RubyGems 1.3.4 r2223
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a6afbaeb3b
commit
31c94ffeb5
126 changed files with 7610 additions and 3747 deletions
|
@ -24,6 +24,27 @@ class TestGemCommandsContentsCommand < RubyGemTestCase
|
|||
assert_equal "", @ui.error
|
||||
end
|
||||
|
||||
def test_execute_all
|
||||
@cmd.options[:all] = true
|
||||
|
||||
quick_gem 'foo' do |gem|
|
||||
gem.files = %w[lib/foo.rb Rakefile]
|
||||
end
|
||||
|
||||
quick_gem 'bar' do |gem|
|
||||
gem.files = %w[lib/bar.rb Rakefile]
|
||||
end
|
||||
|
||||
use_ui @ui do
|
||||
@cmd.execute
|
||||
end
|
||||
|
||||
assert_match %r|lib/foo\.rb|, @ui.output
|
||||
assert_match %r|lib/bar\.rb|, @ui.output
|
||||
assert_match %r|Rakefile|, @ui.output
|
||||
assert_equal "", @ui.error
|
||||
end
|
||||
|
||||
def test_execute_bad_gem
|
||||
@cmd.options[:args] = %w[foo]
|
||||
|
||||
|
@ -75,6 +96,48 @@ class TestGemCommandsContentsCommand < RubyGemTestCase
|
|||
assert_equal "", @ui.error
|
||||
end
|
||||
|
||||
def test_execute_multiple
|
||||
@cmd.options[:args] = %w[foo bar]
|
||||
quick_gem 'foo' do |gem|
|
||||
gem.files = %w[lib/foo.rb Rakefile]
|
||||
end
|
||||
|
||||
quick_gem 'bar' do |gem|
|
||||
gem.files = %w[lib/bar.rb Rakefile]
|
||||
end
|
||||
|
||||
use_ui @ui do
|
||||
@cmd.execute
|
||||
end
|
||||
|
||||
assert_match %r|lib/foo\.rb|, @ui.output
|
||||
assert_match %r|lib/bar\.rb|, @ui.output
|
||||
assert_match %r|Rakefile|, @ui.output
|
||||
assert_equal "", @ui.error
|
||||
end
|
||||
|
||||
def test_execute_no_prefix
|
||||
@cmd.options[:args] = %w[foo]
|
||||
@cmd.options[:prefix] = false
|
||||
|
||||
quick_gem 'foo' do |gem|
|
||||
gem.files = %w[lib/foo.rb Rakefile]
|
||||
end
|
||||
|
||||
use_ui @ui do
|
||||
@cmd.execute
|
||||
end
|
||||
|
||||
expected = <<-EOF
|
||||
lib/foo.rb
|
||||
Rakefile
|
||||
EOF
|
||||
|
||||
assert_equal expected, @ui.output
|
||||
|
||||
assert_equal "", @ui.error
|
||||
end
|
||||
|
||||
def test_handle_options
|
||||
assert_equal false, @cmd.options[:lib_only]
|
||||
assert_equal [], @cmd.options[:specdirs]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue