summaryrefslogtreecommitdiff
path: root/spec/bundler/commands/list_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-06-03 20:45:36 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-18 19:14:15 +0900
commit1436b5026cd1b2ac4b428955aeadaac8e8b12b1b (patch)
tree14f9fa8724d3a96b0b221a39d0e1cbd9cd125197 /spec/bundler/commands/list_spec.rb
parent481840ff18b2d66b20a42240829e06829c34f8f7 (diff)
[rubygems/rubygems] s/bundle!/bundle
https://github.com/rubygems/rubygems/commit/746a4b3d74
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3212
Diffstat (limited to 'spec/bundler/commands/list_spec.rb')
-rw-r--r--spec/bundler/commands/list_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/bundler/commands/list_spec.rb b/spec/bundler/commands/list_spec.rb
index 1f622e5950..ed3edad163 100644
--- a/spec/bundler/commands/list_spec.rb
+++ b/spec/bundler/commands/list_spec.rb
@@ -30,7 +30,7 @@ RSpec.describe "bundle list" do
context "when group is present" do
it "prints the gems not in the specified group" do
- bundle! "list --without-group test"
+ bundle "list --without-group test"
expect(out).to include(" * rack (1.0.0)")
expect(out).to include(" * rails (2.3.2)")
@@ -48,7 +48,7 @@ RSpec.describe "bundle list" do
context "when multiple groups" do
it "prints the gems not in the specified groups" do
- bundle! "list --without-group test production"
+ bundle "list --without-group test production"
expect(out).to include(" * rack (1.0.0)")
expect(out).not_to include(" * rails (2.3.2)")
@@ -70,7 +70,7 @@ RSpec.describe "bundle list" do
context "when group is present" do
it "prints the gems in the specified group" do
- bundle! "list --only-group default"
+ bundle "list --only-group default"
expect(out).to include(" * rack (1.0.0)")
expect(out).not_to include(" * rspec (1.2.7)")
@@ -87,7 +87,7 @@ RSpec.describe "bundle list" do
context "when multiple groups" do
it "prints the gems in the specified groups" do
- bundle! "list --only-group default production"
+ bundle "list --only-group default production"
expect(out).to include(" * rack (1.0.0)")
expect(out).to include(" * rails (2.3.2)")