first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
##
|
||||
# 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
|
||||
Reference in New Issue
Block a user