aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/commands/list_spec.rb
diff options
context:
space:
mode:
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)")