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

* lib/tracer.rb: Updated to match removal of custom_require from

RubyGems.
	* test/test_tracer.rb:  ditto.  Improved failure message if the test
	  fails


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2012-11-29 08:22:04 +00:00
parent 8baab38ad2
commit 88f5a4ff2d
3 changed files with 10 additions and 3 deletions

View file

@ -9,11 +9,11 @@ class TestTracer < Test::Unit::TestCase
assert_in_out_err(%w[-rtracer -e 1]) do |(*lines),|
case lines.size
when 2
assert_match(%r{rubygems/custom_require\.rb:\d+:Kernel:<:}, lines[0])
assert_match(%r{rubygems/core_ext/kernel_require\.rb:\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`: #{lines.inspect}"
end
assert_equal "#0:-e:1::-: 1", lines.last
end