From 1436b5026cd1b2ac4b428955aeadaac8e8b12b1b Mon Sep 17 00:00:00 2001 From: David Rodríguez Date: Wed, 3 Jun 2020 20:45:36 +0200 Subject: [rubygems/rubygems] s/bundle!/bundle https://github.com/rubygems/rubygems/commit/746a4b3d74 --- spec/bundler/commands/list_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'spec/bundler/commands/list_spec.rb') 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)") -- cgit v1.2.3