Commit f55851cb authored by yui-knk's avatar yui-knk

Add 'Raise in rescue' test to exception.

parent 8b6bfd1a
......@@ -365,3 +365,13 @@ assert('Raise in ensure') do
end
end
assert('Raise in rescue') do
assert_raise(ArgumentError) do
begin
raise "" # StandardError
rescue
raise ArgumentError
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment