summaryrefslogtreecommitdiff
path: root/spec/commands/config_spec.rb
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-08-03 15:22:12 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-08-03 15:22:12 -0500
commit8f1f1071c9e6ebc32697a9b046a07a9ef89b6d6f (patch)
treedb9aacea31b9c289d80c45e57ba045f43b16523e /spec/commands/config_spec.rb
parent9d5ca174c247027db8f6b40784b2d9d402f93b9d (diff)
downloadbundler-8f1f1071c9e6ebc32697a9b046a07a9ef89b6d6f.tar.gz
Remove 0.9 upgrade compatibilityseg-remove-environment
Diffstat (limited to 'spec/commands/config_spec.rb')
-rw-r--r--spec/commands/config_spec.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/commands/config_spec.rb b/spec/commands/config_spec.rb
index b7a1d55172..fce6102c29 100644
--- a/spec/commands/config_spec.rb
+++ b/spec/commands/config_spec.rb
@@ -30,15 +30,6 @@ describe ".bundle/config" do
expect(bundled_app("../foo/config")).to exist
expect(the_bundle).to include_gems "rack 1.0.0"
end
-
- it "removes environment.rb from BUNDLE_APP_CONFIG's path" do
- FileUtils.mkdir_p(tmp("foo/bar"))
- ENV["BUNDLE_APP_CONFIG"] = tmp("foo/bar").to_s
- bundle "install"
- FileUtils.touch tmp("foo/bar/environment.rb")
- expect(the_bundle).to include_gems "rack 1.0.0"
- expect(tmp("foo/bar/environment.rb")).not_to exist
- end
end
describe "global" do