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

* test/test_tracer.rb: new test case. mimimal regression test for r29280.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2010-11-17 07:14:13 +00:00
parent 8903faf1a1
commit 3a0e9cb075
2 changed files with 25 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Wed Nov 17 16:09:52 2010 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* test/test_tracer.rb: new test case.
mimimal regression test for r29280.
Wed Nov 17 16:04:23 2010 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* test/ruby/envutil.rb (Test::Unit::Assersions#assert_warn):

20
test/test_tracer.rb Normal file
View file

@ -0,0 +1,20 @@
require 'test/unit'
require_relative 'ruby/envutil'
class TestTracer < Test::Unit::TestCase
include EnvUtil
def test_work_with_e
assert_in_out_err(%w[-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[1]
end
end
end