summaryrefslogtreecommitdiff
path: root/spec/bundler/install/deploy_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/install/deploy_spec.rb')
-rw-r--r--spec/bundler/install/deploy_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/bundler/install/deploy_spec.rb b/spec/bundler/install/deploy_spec.rb
index 2f48437504..1f6abc23a5 100644
--- a/spec/bundler/install/deploy_spec.rb
+++ b/spec/bundler/install/deploy_spec.rb
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-RSpec.describe "install with --deployment or --frozen" do
+RSpec.describe "install in deployment or frozen mode" do
before do
gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
@@ -67,7 +67,8 @@ RSpec.describe "install with --deployment or --frozen" do
skip "doesn't find bundle" if Gem.win_platform?
bundle! :install
- bundle "install --deployment"
+ bundle "config --local deployment true"
+ bundle :install
bundle! "exec bundle check", :env => { "PATH" => path }
end