aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/install
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-05-28 22:41:56 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-05 07:32:42 +0900
commitfed9419e55159bc6e53cc7590188ba6fb92d31fe (patch)
tree02eece70273ece1a161347058e46266dffca64c4 /spec/bundler/install
parent5989827dc7e39f882b61c1650c87d14599d21033 (diff)
downloadruby-fed9419e55159bc6e53cc7590188ba6fb92d31fe.tar.gz
[rubygems/rubygems] Fix flag name in spec descriptions
https://github.com/rubygems/rubygems/commit/6395392b83
Diffstat (limited to 'spec/bundler/install')
-rw-r--r--spec/bundler/install/gemfile/groups_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/install/gemfile/groups_spec.rb b/spec/bundler/install/gemfile/groups_spec.rb
index 5656575eb3..a84496dd76 100644
--- a/spec/bundler/install/gemfile/groups_spec.rb
+++ b/spec/bundler/install/gemfile/groups_spec.rb
@@ -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"