blob: cab99834ed2ef62eb5cf2f00d84a94c447ff57fd (
plain)
1
2
3
4
5
6
7
8
9
10
|
##
# StandardError ISO Test
assert('StandardError', '15.2.23') do
assert_equal Class, StandardError.class
end
assert('StandardError superclass', '15.2.23.2') do
assert_equal Exception, StandardError.superclass
end
|