aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/install/gems/standalone_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-05-29 12:27:15 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-05 07:32:42 +0900
commit61b61f426a796871c27a0a9e4eedb31057864165 (patch)
treebba186eac9ea7a6fc84349368904e13a7179edd8 /spec/bundler/install/gems/standalone_spec.rb
parentf02f19d62f70bc3b38ff9f2902f99e3bfefefa23 (diff)
downloadruby-61b61f426a796871c27a0a9e4eedb31057864165.tar.gz
[rubygems/rubygems] Reword specs to not mention deprecated flags
https://github.com/rubygems/rubygems/commit/f878a81f22
Diffstat (limited to 'spec/bundler/install/gems/standalone_spec.rb')
-rw-r--r--spec/bundler/install/gems/standalone_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/bundler/install/gems/standalone_spec.rb b/spec/bundler/install/gems/standalone_spec.rb
index 6e4074fb9f..c45ecd52ec 100644
--- a/spec/bundler/install/gems/standalone_spec.rb
+++ b/spec/bundler/install/gems/standalone_spec.rb
@@ -178,7 +178,7 @@ RSpec.shared_examples "bundle install --standalone" do
expect(err).to eq("ZOMG LOAD ERROR")
end
- it "allows --without to limit the groups used in a standalone" do
+ it "allows `without` configuration to limit the groups used in a standalone" do
bundle! :install, forgotten_command_line_options(:path => bundled_app("bundle"), :without => "test").merge(:standalone => true, :dir => cwd)
load_error_ruby <<-RUBY, "spec"
@@ -194,7 +194,7 @@ RSpec.shared_examples "bundle install --standalone" do
expect(err).to eq("ZOMG LOAD ERROR")
end
- it "allows --path to change the location of the standalone bundle" do
+ it "allows `path` configuration to change the location of the standalone bundle" do
bundle! "install", forgotten_command_line_options(:path => "path/to/bundle").merge(:standalone => true, :dir => cwd)
ruby <<-RUBY
@@ -208,7 +208,7 @@ RSpec.shared_examples "bundle install --standalone" do
expect(out).to eq("2.3.2")
end
- it "allows remembered --without to limit the groups used in a standalone" do
+ it "allows `without` to limit the groups used in a standalone" do
bundle! :install, forgotten_command_line_options(:without => "test").merge(:dir => cwd)
bundle! :install, forgotten_command_line_options(:path => bundled_app("bundle")).merge(:standalone => true, :dir => cwd)