aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/install/gems/sudo_spec.rb19
1 files changed, 18 insertions, 1 deletions
diff --git a/spec/install/gems/sudo_spec.rb b/spec/install/gems/sudo_spec.rb
index 36643218..aa06584f 100644
--- a/spec/install/gems/sudo_spec.rb
+++ b/spec/install/gems/sudo_spec.rb
@@ -96,8 +96,11 @@ describe "when using sudo", :sudo => true do
end
describe "and BUNDLE_PATH is not writable" do
- it "installs" do
+ before do
sudo "chmod ugo-w #{default_bundle_path}"
+ end
+
+ it "installs" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", '1.0'
@@ -106,6 +109,20 @@ describe "when using sudo", :sudo => true do
expect(default_bundle_path("gems/rack-1.0.0")).to exist
should_be_installed "rack 1.0"
end
+
+ it "cleans up the tmpdirs generated" do
+ Dir.glob("#{Dir.tmpdir}/bundler*").each do |tmpdir|
+ FileUtils.remove_entry_secure(tmpdir)
+ end
+
+ install_gemfile <<-G
+ source "file://#{gem_repo1}"
+ gem "rack"
+ G
+ tmpdirs = Dir.glob("#{Dir.tmpdir}/bundler*")
+
+ expect(tmpdirs).to be_empty
+ end
end
describe "and GEM_HOME is not writable" do