Commit 77942f70 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2316 from ksss/test-exception

Exception#exception fix test
parents 7c300971 bc0cf69a
...@@ -16,11 +16,14 @@ assert('Exception.exception', '15.2.22.4.1') do ...@@ -16,11 +16,14 @@ assert('Exception.exception', '15.2.22.4.1') do
end end
assert('Exception#exception', '15.2.22.5.1') do assert('Exception#exception', '15.2.22.5.1') do
e1 = Exception.exception() e = Exception.new
e2 = Exception.exception('b') re = RuntimeError.new
assert_equal e, e.exception
assert_equal Exception, e1.class assert_equal e, e.exception(e)
assert_equal Exception, e2.class assert_equal re, re.exception(re)
changed_re = re.exception('message has changed')
assert_not_equal re, changed_re
assert_equal 'message has changed', changed_re.message
end end
assert('Exception#message', '15.2.22.5.2') do assert('Exception#message', '15.2.22.5.2') do
......
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