diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-17 14:48:35 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-17 14:48:35 +0000 |
commit | 327b74e08b8bf48e4f282169b16d2db04633ffca (patch) | |
tree | 9359df929b937e29eb6cba6516b0ffcc1baca1ca /test | |
parent | 12813a494d952ae802918ebb43833b808a9a16c0 (diff) | |
download | ruby-327b74e08b8bf48e4f282169b16d2db04633ffca.tar.gz ruby-327b74e08b8bf48e4f282169b16d2db04633ffca.tar.xz ruby-327b74e08b8bf48e4f282169b16d2db04633ffca.zip |
Wed Nov 17 23:47:30 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
* test/ruby/test_settracefunc.rb: added. [ruby-dev:24884]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r-- | test/ruby/test_settracefunc.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/ruby/test_settracefunc.rb b/test/ruby/test_settracefunc.rb new file mode 100644 index 000000000..515453245 --- /dev/null +++ b/test/ruby/test_settracefunc.rb @@ -0,0 +1,26 @@ +require 'test/unit' + +class TestSetTraceFunc < Test::Unit::TestCase + def foo; end + + def test_event + events = [] + set_trace_func(Proc.new { |event, file, lineno| + events << [event, lineno] + }) + a = 1 + foo + a + set_trace_func nil + + assert_equal(["line", 11], events.shift) # line "a = 1" + assert_equal(["line", 12], events.shift) # line "foo" + assert_equal(["call", 4], events.shift) # call foo + event, lineno = events.shift # return + assert_equal("return", event) + assert_equal(4, lineno) # [history] it could not be expected in 1.8 + assert_equal(["line", 13], events.shift) # line "a" + assert_equal(["line", 14], events.shift) # line "set_trace_func nil" + assert_equal(["c-call", 14], events.shift) # c-call set_trace_func + end +end |