* bootstraptest/test_exception.rb: test for [ruby-core:24767].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6b0ac4ae63
commit
c82826ce5f
@ -370,7 +370,7 @@ assert_equal %q{}, %q{
|
|||||||
}
|
}
|
||||||
|
|
||||||
##
|
##
|
||||||
assert_match /undefined method `foo\'/, %q{
|
assert_match /undefined method `foo\'/, %q{#`
|
||||||
STDERR.reopen(STDOUT)
|
STDERR.reopen(STDOUT)
|
||||||
class C
|
class C
|
||||||
def inspect
|
def inspect
|
||||||
@ -402,3 +402,15 @@ assert_equal 'nil', %q{
|
|||||||
exc.inspect
|
exc.inspect
|
||||||
}, '[ruby-dev:32608]'
|
}, '[ruby-dev:32608]'
|
||||||
|
|
||||||
|
assert_equal 'exception class/object expected', %q{
|
||||||
|
class ZeroDivisionError
|
||||||
|
def self.new(message)
|
||||||
|
42
|
||||||
|
end
|
||||||
|
end
|
||||||
|
begin
|
||||||
|
1/0
|
||||||
|
rescue Exception => e
|
||||||
|
e.message
|
||||||
|
end
|
||||||
|
}, '[ruby-core:24767]'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user