aboutsummaryrefslogtreecommitdiffstats
path: root/spec/cache/gems_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/cache/gems_spec.rb')
-rw-r--r--spec/cache/gems_spec.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/spec/cache/gems_spec.rb b/spec/cache/gems_spec.rb
index 9386164c..b70f6274 100644
--- a/spec/cache/gems_spec.rb
+++ b/spec/cache/gems_spec.rb
@@ -151,38 +151,6 @@ describe "bundle cache" do
end
end
- describe "when there are also svn sources" do
- before do
- build_svn "foo"
- system_gems "rack-1.0.0"
-
- install_gemfile <<-G
- source "file://#{gem_repo1}"
- svn "file://#{lib_path("foo-1.0")}" do
- gem 'foo'
- end
- gem 'rack'
- G
- end
-
- it "still works" do
- bundle :cache
-
- system_gems []
- bundle "install --local"
-
- should_be_installed("rack 1.0.0", "foo 1.0")
- end
-
- it "should not explode if the lockfile is not present" do
- FileUtils.rm(bundled_app("Gemfile.lock"))
-
- bundle :cache
-
- expect(bundled_app("Gemfile.lock")).to exist
- end
- end
-
describe "when previously cached" do
before :each do
build_repo2