summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-06-25 18:16:34 -0700
committerCarlhuda <carlhuda@engineyard.com>2010-06-25 18:16:34 -0700
commitd35e54d5338e35407db194290feece410c8eb517 (patch)
treefd395aaa252cc54991096e06856c83118aa0195e
parentfe29acb063aef06915f56cffe8764b131748db21 (diff)
downloadbundler-d35e54d5338e35407db194290feece410c8eb517.tar.gz
Removing an outdated spec1.0.0.beta.2
-rw-r--r--spec/install/gems/simple_case_spec.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/spec/install/gems/simple_case_spec.rb b/spec/install/gems/simple_case_spec.rb
index c018eb07e8..b85de8f0f8 100644
--- a/spec/install/gems/simple_case_spec.rb
+++ b/spec/install/gems/simple_case_spec.rb
@@ -161,32 +161,6 @@ describe "bundle install with gem sources" do
end
end
- it "ensures that gems are actually installed and not just cached" do
- build_repo2
- gemfile <<-G
- source "file://#{gem_repo2}"
- group :foo do
- gem "rack"
- end
- G
-
- bundle "install --without foo"
-
- gemfile <<-G
- source "file://#{gem_repo2}"
- gem "rack"
- G
-
- update_repo gem_repo2 do
- build_gem "rack" do |s|
- s.write "lib/rack.rb", "raise 'omgomgomg'"
- end
- end
-
- bundle "install"
- should_be_installed "rack 1.0.0"
- end
-
it "finds gems in multiple sources" do
build_repo2
update_repo2