mirror of https://gitee.com/bigwinds/arangodb
22 lines
399 B
Ruby
22 lines
399 B
Ruby
##
|
|
# ArgumentError ISO Test
|
|
|
|
assert('ArgumentError', '15.2.24') do
|
|
e2 = nil
|
|
a = []
|
|
begin
|
|
# this will cause an exception due to the wrong arguments
|
|
a[]
|
|
rescue => e1
|
|
e2 = e1
|
|
end
|
|
|
|
assert_equal(Class, ArgumentError.class)
|
|
assert_equal(ArgumentError, e2.class)
|
|
end
|
|
|
|
assert('ArgumentError superclass', '15.2.24.2') do
|
|
assert_equal(StandardError, ArgumentError.superclass)
|
|
end
|
|
|