mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* error.c (exit_initialize): deal with true and false as well as
Kernel#exit. [ruby-dev:44951] [Bug #5728] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c5fc4da7a2
commit
ea82d4809d
3 changed files with 54 additions and 5 deletions
|
@ -348,5 +348,19 @@ end.join
|
|||
eis = SystemExit.new(7, "msg")
|
||||
assert_equal(7, eis.status)
|
||||
assert_equal("msg", eis.message)
|
||||
|
||||
bug5728 = '[ruby-dev:44951]'
|
||||
et = SystemExit.new(true)
|
||||
assert_equal(true, et.success?, bug5728)
|
||||
assert_equal("SystemExit", et.message, bug5728)
|
||||
ef = SystemExit.new(false)
|
||||
assert_equal(false, ef.success?, bug5728)
|
||||
assert_equal("SystemExit", ef.message, bug5728)
|
||||
ets = SystemExit.new(true, "msg")
|
||||
assert_equal(true, ets.success?, bug5728)
|
||||
assert_equal("msg", ets.message, bug5728)
|
||||
efs = SystemExit.new(false, "msg")
|
||||
assert_equal(false, efs.success?, bug5728)
|
||||
assert_equal("msg", efs.message, bug5728)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue