summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-02-22 15:58:37 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-02-22 15:58:37 -0800
commit6376790dd590b8a954ff4c28c60f2bcb34ea6807 (patch)
treea5c3b3cc29898f56d204253db24928eb3cbf7589 /spec
parent5594692a09de5497f656a690607f00e11fba703f (diff)
downloadbundler-6376790dd590b8a954ff4c28c60f2bcb34ea6807.tar.gz
Refactor default_spec stuff
Diffstat (limited to 'spec')
-rw-r--r--spec/other/exec_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/other/exec_spec.rb b/spec/other/exec_spec.rb
index a8fbbd9466..6c433bea09 100644
--- a/spec/other/exec_spec.rb
+++ b/spec/other/exec_spec.rb
@@ -77,22 +77,4 @@ describe "bundle exec" do
out.should == "0.9.1"
should_not_be_installed "rack_middleware 1.0"
end
-
- it "handles gems excluded by --without" do
- build_gem "pg", "1.0.0"
-
- install_gemfile <<-G, :without => :middleware
- source "file://#{gem_repo1}"
- gem "rack"
-
- group :production do
- gem "pg"
- end
- G
-
- bundle "exec ruby -e \"require 'rack'; puts Rack\""
-
- out.should == "Rack"
- should_not_be_installed "pg 1.0"
- end
end \ No newline at end of file