1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Reduced gem_prelude to just require rubygems. Reviewed by Evan Phoenix

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30538 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ryan 2011-01-14 02:02:12 +00:00
parent 8409156e24
commit f52c2cc24d
10 changed files with 40 additions and 277 deletions

View file

@ -5,16 +5,16 @@ class TestTracer < Test::Unit::TestCase
include EnvUtil
def test_work_with_e
assert_in_out_err(%w[-rtracer -e 1]) do |(*lines),|
assert_in_out_err(%w[--disable-gems -rtracer -e 1]) do |(*lines),|
case lines.size
when 2
assert_match %r[#0:<internal:lib/rubygems/custom_require>:\d+:Kernel:<: -], lines[0]
when 1
# do nothing
else
flunk 'unexpected output from `ruby -rtracer -e 1`'
flunk "unexpected output from `ruby -rtracer -e 1`"
end
assert_equal "#0:-e:1::-: 1", lines[1]
assert_equal "#0:-e:1::-: 1", lines.last
end
end
end