mirror of
https://github.com/ruby/ruby.git
synced 2025-09-19 10:33:58 +02:00
merges r24404 from trunk into ruby_1_9_1.
-- * bootstraptest/test_exception.rb: test for [ruby-core:24767]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@24468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
df359ef462
commit
4ef1f3eafe
2 changed files with 14 additions and 2 deletions
|
@ -370,7 +370,7 @@ assert_equal %q{}, %q{
|
|||
}
|
||||
|
||||
##
|
||||
assert_match /undefined method `foo\'/, %q{
|
||||
assert_match /undefined method `foo\'/, %q{#`
|
||||
STDERR.reopen(STDOUT)
|
||||
class C
|
||||
def inspect
|
||||
|
@ -402,3 +402,15 @@ assert_equal 'nil', %q{
|
|||
exc.inspect
|
||||
}, '[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]'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.1"
|
||||
#define RUBY_PATCHLEVEL 272
|
||||
#define RUBY_PATCHLEVEL 273
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
#define RUBY_VERSION_MINOR 9
|
||||
#define RUBY_VERSION_TEENY 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue