aboutsummaryrefslogtreecommitdiffstats
path: root/spec/runtime/load_spec.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-06-06 12:29:20 -0700
committerCarl Lerche <carllerche@mac.com>2010-06-06 12:29:20 -0700
commit917cc4fd2ffeec796fd2fcb996d2154e15e279dd (patch)
treee2feed603f059db728ee44032c07728fb8369b7a /spec/runtime/load_spec.rb
parent5c8d9c82b287ef2f6d2fd36b45d6cd11cad12c88 (diff)
downloadbundler-917cc4fd2ffeec796fd2fcb996d2154e15e279dd.tar.gz
Get the tests passing on 1.9
Diffstat (limited to 'spec/runtime/load_spec.rb')
-rw-r--r--spec/runtime/load_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/runtime/load_spec.rb b/spec/runtime/load_spec.rb
index 9762e7c0..b611ce7f 100644
--- a/spec/runtime/load_spec.rb
+++ b/spec/runtime/load_spec.rb
@@ -78,6 +78,7 @@ describe "Bundler.load" do
bundle :lock
end
+ # This is obviously not true on 1.9 thanks to the AWEOME! gem prelude :'(
it "does not invoke setup inside env.rb" do
ruby <<-RUBY
require 'bundler'
@@ -86,7 +87,7 @@ describe "Bundler.load" do
RUBY
out.should == ""
- end
+ end if RUBY_VERSION < "1.9"
end
describe "not hurting brittle rubygems" do