mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f52c2cc24d
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30538 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
20 lines
514 B
Ruby
20 lines
514 B
Ruby
require 'test/unit'
|
|
require_relative 'ruby/envutil'
|
|
|
|
class TestTracer < Test::Unit::TestCase
|
|
include EnvUtil
|
|
|
|
def test_work_with_e
|
|
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`"
|
|
end
|
|
assert_equal "#0:-e:1::-: 1", lines.last
|
|
end
|
|
end
|
|
end
|