Exception#exception fix test

Exception.exception is not call Exception#exception.
Test for Exception#exception should call Exception#exception method.
This commit is contained in:
ksss
2014-05-25 11:12:58 +09:00
parent 229e7fe245
commit bc0cf69a83
+8 -5
View File
@@ -16,11 +16,14 @@ assert('Exception.exception', '15.2.22.4.1') do
end
assert('Exception#exception', '15.2.22.5.1') do
e1 = Exception.exception()
e2 = Exception.exception('b')
assert_equal Exception, e1.class
assert_equal Exception, e2.class
e = Exception.new
re = RuntimeError.new
assert_equal e, e.exception
assert_equal e, e.exception(e)
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
assert('Exception#message', '15.2.22.5.2') do