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

* test/ruby/test_settracefunc.rb (TestSetTraceFunc#test_raise):

raise is ignored in backtrace now.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15637 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-02-29 05:16:39 +00:00
parent 2f866a3666
commit b4be9b0bb1

View file

@ -159,7 +159,7 @@ class TestSetTraceFunc < Test::Unit::TestCase
events.shift)
assert_equal(["c-return", 4, :set_backtrace, Exception],
events.shift)
assert_equal(["raise", 4, :raise, Kernel],
assert_equal(["raise", 4, :test_raise, TestSetTraceFunc],
events.shift)
assert_equal(["c-call", 4, :===, Module],
events.shift)