diff options
author | Carlhuda <carlhuda@engineyard.com> | 2010-02-22 15:58:37 -0800 |
---|---|---|
committer | Carlhuda <carlhuda@engineyard.com> | 2010-02-22 15:58:37 -0800 |
commit | 6376790dd590b8a954ff4c28c60f2bcb34ea6807 (patch) | |
tree | a5c3b3cc29898f56d204253db24928eb3cbf7589 /spec | |
parent | 5594692a09de5497f656a690607f00e11fba703f (diff) | |
download | bundler-6376790dd590b8a954ff4c28c60f2bcb34ea6807.tar.gz |
Refactor default_spec stuff
Diffstat (limited to 'spec')
-rw-r--r-- | spec/other/exec_spec.rb | 18 |
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 |