summaryrefslogtreecommitdiff
path: root/spec/bundler/install/bundler_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/install/bundler_spec.rb')
-rw-r--r--spec/bundler/install/bundler_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/bundler/install/bundler_spec.rb b/spec/bundler/install/bundler_spec.rb
index f4e9ffb786..7b5ae109f9 100644
--- a/spec/bundler/install/bundler_spec.rb
+++ b/spec/bundler/install/bundler_spec.rb
@@ -147,7 +147,7 @@ RSpec.describe "bundle install" do
end
it "can install dependencies with newer bundler version with system gems" do
- bundle! "config set path.system true"
+ bundle "config set path.system true"
system_gems "bundler-99999999.99.1"
@@ -156,12 +156,12 @@ RSpec.describe "bundle install" do
gem "rails", "3.0"
G
- bundle! "check"
+ bundle "check"
expect(out).to include("The Gemfile's dependencies are satisfied")
end
it "can install dependencies with newer bundler version with a local path" do
- bundle! "config set path .bundle"
+ bundle "config set path .bundle"
system_gems "bundler-99999999.99.1"
@@ -170,12 +170,12 @@ RSpec.describe "bundle install" do
gem "rails", "3.0"
G
- bundle! "check"
+ bundle "check"
expect(out).to include("The Gemfile's dependencies are satisfied")
end
context "with allow_bundler_dependency_conflicts set" do
- before { bundle! "config set allow_bundler_dependency_conflicts true" }
+ before { bundle "config set allow_bundler_dependency_conflicts true" }
it "are forced to the current bundler version with warnings when no compatible version is found" do
build_repo4 do