1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[rubygems/rubygems] Fix flag name in spec descriptions

https://github.com/rubygems/rubygems/commit/6395392b83
This commit is contained in:
David Rodríguez 2020-05-28 22:41:56 +02:00 committed by Hiroshi SHIBATA
parent 5989827dc7
commit fed9419e55
Notes: git 2020-06-05 07:34:01 +09:00

View file

@ -138,7 +138,7 @@ RSpec.describe "bundle install with groups" do
ENV["BUNDLE_WITHOUT"] = nil
end
it "clears without when passed an empty list" do
it "clears --without when passed an empty list" do
bundle :install, forgotten_command_line_options(:without => "emo")
bundle :install, forgotten_command_line_options(:without => "")
@ -176,7 +176,7 @@ RSpec.describe "bundle install with groups" do
ENV["BUNDLE_WITH"] = nil
end
it "clears with when passed an empty list" do
it "clears --with when passed an empty list" do
bundle :install, forgotten_command_line_options(:with => "debugging")
bundle :install, forgotten_command_line_options(:with => "")
expect(the_bundle).not_to include_gems "thin 1.0"