mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
12 lines
199 B
Ruby
12 lines
199 B
Ruby
##
|
|
# StandardError ISO Test
|
|
|
|
assert('StandardError', '15.2.23') do
|
|
StandardError.class == Class
|
|
end
|
|
|
|
assert('StandardError superclass', '15.2.23.2') do
|
|
StandardError.superclass == Exception
|
|
end
|
|
|