aboutsummaryrefslogtreecommitdiffstats
path: root/spec/other
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-12-26 20:32:03 -0600
committerSamuel Giddins <segiddins@segiddins.me>2016-12-26 20:32:03 -0600
commitf8534729342feb1314dba9da46f457f8e5247e2f (patch)
tree1eadda03e9f3069947bdc61999e2340c0b2f1a03 /spec/other
parentb361db92def2ad0634f2dc43216ac62242216d9f (diff)
downloadbundler-f8534729342feb1314dba9da46f457f8e5247e2f.tar.gz
[PostitTrampoline] Rename env vars
Diffstat (limited to 'spec/other')
-rw-r--r--spec/other/trampoline_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/other/trampoline_spec.rb b/spec/other/trampoline_spec.rb
index 9a8e0a4a..88e0302f 100644
--- a/spec/other/trampoline_spec.rb
+++ b/spec/other/trampoline_spec.rb
@@ -3,8 +3,8 @@ require "spec_helper"
describe "bundler version trampolining" do
before do
- ENV["BUNDLE_DISABLE_POSTIT"] = nil
- ENV["BUNDLE_ENABLE_TRAMPOLINE"] = "true"
+ ENV["BUNDLE_TRAMPOLINE_DISABLE"] = nil
+ ENV["BUNDLE_TRAMPOLINE_FORCE"] = "true"
FileUtils.rm_rf(system_gem_path)
FileUtils.cp_r(base_system_gems, system_gem_path)
end
@@ -59,8 +59,8 @@ describe "bundler version trampolining" do
end
end
- context "without BUNDLE_ENABLE_TRAMPOLINE" do
- before { ENV["BUNDLE_ENABLE_TRAMPOLINE"] = nil }
+ context "without BUNDLE_TRAMPOLINE_FORCE" do
+ before { ENV["BUNDLE_TRAMPOLINE_FORCE"] = nil }
context "when the version is >= 2" do
let(:version) { "2.7182818285" }