From a458e72e7c70fa7e3208cf31c115c42317116c06 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 12 Sep 2011 03:42:39 +0000 Subject: * test/ruby/test_exception.rb (TestException#test_exit_success_p): assert also the cases when exiting with true and false. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 ++++- test/ruby/test_exception.rb | 16 ++++++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index d1189145ab..67e93a6c71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ -Mon Sep 12 12:40:44 2011 Nobuyoshi Nakada +Mon Sep 12 12:42:36 2011 Nobuyoshi Nakada + + * test/ruby/test_exception.rb (TestException#test_exit_success_p): + assert also the cases when exiting with true and false. * lib/test/unit/assertions.rb (assert_send): make arguments in the default message clearer. diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb index a26ade075b..52dd4665a1 100644 --- a/test/ruby/test_exception.rb +++ b/test/ruby/test_exception.rb @@ -296,13 +296,25 @@ end.join exit rescue SystemExit => e end - assert(e.success?) + assert_send([e, :success?], "success by default") + + begin + exit(true) + rescue SystemExit => e + end + assert_send([e, :success?], "true means success") + + begin + exit(false) + rescue SystemExit => e + end + assert_not_send([e, :success?], "false means failure") begin abort rescue SystemExit => e end - assert(!e.success?) + assert_not_send([e, :success?], "abort means failure") end def test_nomethoderror -- cgit v1.2.3