aboutsummaryrefslogtreecommitdiffstats
path: root/spec/other/exec_spec.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-06-10 21:45:59 -0700
committerAndre Arko <andre@arko.net>2011-06-10 21:45:59 -0700
commit78490bf0c32eceec426d0eb97391820d96ce7028 (patch)
treeb76ca4642e672b98aa25055f4a975d51dcd8324a /spec/other/exec_spec.rb
parent0af3d1000c9b5da30b0f31864e62661904b26c4e (diff)
parent68e7ae35bb9259a1b160c096d3b1735a03466903 (diff)
downloadbundler-78490bf0c32eceec426d0eb97391820d96ce7028.tar.gz
Merge branch 'refactor_index'
Diffstat (limited to 'spec/other/exec_spec.rb')
-rw-r--r--spec/other/exec_spec.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/spec/other/exec_spec.rb b/spec/other/exec_spec.rb
index 8f38824b..799f3f70 100644
--- a/spec/other/exec_spec.rb
+++ b/spec/other/exec_spec.rb
@@ -210,33 +210,4 @@ describe "bundle exec" do
end
end
-
- describe "bundling bundler" do
- before(:each) do
- gemfile <<-G
- source "file://#{gem_repo1}"
- gem "rack"
- G
-
- bundle "install --path vendor/bundle --disable-shared-gems"
- end
-
- it "does not explode with --disable-shared-gems" do
- bundle "exec bundle check", :exitstatus => true
- exitstatus.should == 0
- end
-
- it "does not explode when starting with Bundler.setup" do
- ruby <<-R
- require "rubygems"
- require "bundler"
- Bundler.setup
- puts `bundle check`
- puts $?.exitstatus
- R
-
- out.should include("satisfied")
- out.should include("\n0")
- end
- end
end