summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-08 23:41:14 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-08 23:41:14 +0000
commit05ba6fffcc6414e2940acf7c918821d832d7b30d (patch)
treea86e3d20d1a9a64024bf82700c7d5c53cfe9d74d /test
parent599dbf65a57ad7ce37a3dd23d3513ef2699eb9b2 (diff)
* lib/rubygems: Update to RubyGems master bf37240. Fixes useless
error message with `gem install -g` with no gem dependencies file. * test/rubygems: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/rubygems/test_gem_commands_install_command.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/rubygems/test_gem_commands_install_command.rb b/test/rubygems/test_gem_commands_install_command.rb
index ed7f72d6a5..32f6fc4237 100644
--- a/test/rubygems/test_gem_commands_install_command.rb
+++ b/test/rubygems/test_gem_commands_install_command.rb
@@ -809,14 +809,22 @@ ERROR: Possible alternatives: non_existent_with_hint
end
def test_handle_options_file
+ FileUtils.touch 'Gemfile'
+
@cmd.handle_options %w[-g Gemfile]
assert_equal 'Gemfile', @cmd.options[:gemdeps]
+ FileUtils.rm 'Gemfile'
+
+ FileUtils.touch 'gem.deps.rb'
+
@cmd.handle_options %w[--file gem.deps.rb]
assert_equal 'gem.deps.rb', @cmd.options[:gemdeps]
+ FileUtils.rm 'gem.deps.rb'
+
FileUtils.touch 'Isolate'
@cmd.handle_options %w[-g]