summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-03-05 21:25:16 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-03-06 14:01:37 +0100
commit0cdda75528bdfe3f79f4f40c533cbdb2fba16eae (patch)
treeeeae8b10397ba8516980a6a611c58d46412ba2b4
parent7923737ef28e45964a8f437824722265ecc9b278 (diff)
downloadbundler-0cdda75528bdfe3f79f4f40c533cbdb2fba16eae.tar.gz
Keep temp files inside repo folder
-rw-r--r--spec/cache/cache_path_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/cache/cache_path_spec.rb b/spec/cache/cache_path_spec.rb
index 12385427b1..693c93f11e 100644
--- a/spec/cache/cache_path_spec.rb
+++ b/spec/cache/cache_path_spec.rb
@@ -25,8 +25,8 @@ RSpec.describe "bundle package" do
context "with absolute --cache-path" do
it "caches gems at given path" do
- bundle :cache, "cache-path" => "/tmp/cache-foo"
- expect(bundled_app("/tmp/cache-foo/rack-1.0.0.gem")).to exist
+ bundle :cache, "cache-path" => "tmp/cache-foo"
+ expect(bundled_app("tmp/cache-foo/rack-1.0.0.gem")).to exist
end
end
end