aboutsummaryrefslogtreecommitdiffstats
path: root/spec/runtime/require_spec.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-05-05 03:30:37 -0700
committerCarl Lerche <carllerche@mac.com>2010-05-05 03:30:37 -0700
commit2d3df08eb3d69c891f3b56444853f3aeac020271 (patch)
tree239a16fa2528ec2734366e952f19db0dea627866 /spec/runtime/require_spec.rb
parent8f3f7840bbb5fe6700b1c4a0329beccd067998e0 (diff)
downloadbundler-2d3df08eb3d69c891f3b56444853f3aeac020271.tar.gz
Rewrite the autorequire code since we do not need to handle generated lock files
Diffstat (limited to 'spec/runtime/require_spec.rb')
-rw-r--r--spec/runtime/require_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/runtime/require_spec.rb b/spec/runtime/require_spec.rb
index b6eb2c93..d04bc68a 100644
--- a/spec/runtime/require_spec.rb
+++ b/spec/runtime/require_spec.rb
@@ -56,7 +56,7 @@ describe "Bundler.require" do
# default and specific group
run "Bundler.require(:default, :bar)"
- check out.should == "two\nbaz\nqux"
+ check out.should == "baz\nqux\ntwo"
# specific group given as a string
run "Bundler.require('bar')"
@@ -103,7 +103,7 @@ describe "Bundler.require" do
check out.should == "baz\nqux"
bundle "exec ruby -e 'Bundler.require(:default, :bar)'"
- out.should == "two\nbaz\nqux"
+ out.should == "baz\nqux\ntwo"
end
end