aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/cache/cache_path_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/cache/cache_path_spec.rb')
-rw-r--r--spec/bundler/cache/cache_path_spec.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/spec/bundler/cache/cache_path_spec.rb b/spec/bundler/cache/cache_path_spec.rb
index ec6d6e312a..69d3809964 100644
--- a/spec/bundler/cache/cache_path_spec.rb
+++ b/spec/bundler/cache/cache_path_spec.rb
@@ -1,5 +1,4 @@
# frozen_string_literal: true
-require "spec_helper"
RSpec.describe "bundle package" do
before do
@@ -24,11 +23,10 @@ RSpec.describe "bundle package" do
end
end
- context "when given an absolute path" do
- it "exits with non-zero status" do
+ context "with absolute --cache-path" do
+ it "caches gems at given path" do
bundle :package, "cache-path" => "/tmp/cache-foo"
- expect(out).to match(/must be relative/)
- expect(exitstatus).to eq(15) if exitstatus
+ expect(bundled_app("/tmp/cache-foo/rack-1.0.0.gem")).to exist
end
end
end