Commit 596cd3f6 authored by take_cheeze's avatar take_cheeze

add Exception#backtrace test

parent ad5c408c
......@@ -335,3 +335,13 @@ end
assert('Exception#inspect without message') do
Exception.new.inspect
end
assert('Exception#backtrace') do
begin
raise "get backtrace"
rescue => e
e.backtrace
end
true
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment