From 8932916c81e367ee5b06fb697c3f1c6561bf2bc3 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 21 Oct 2008 12:33:44 +0000 Subject: * lib/test/unit.rb (assert_nothing_raised): raise with backtrace. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/test/unit.rb | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e59564998..dc72f4238 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 21 21:33:36 2008 Nobuyoshi Nakada + + * lib/test/unit.rb (assert_nothing_raised): raise with backtrace. + Tue Oct 21 20:12:19 2008 Tanaka Akira * lib/test/unit.rb (assert_nothing_raised): set backtrace. diff --git a/lib/test/unit.rb b/lib/test/unit.rb index 57ae020b2..c4c3724cd 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -82,9 +82,7 @@ module Test if ((args.empty? && !e.instance_of?(MiniTest::Assertion)) || args.any? {|a| a.instance_of?(Module) ? e.is_a?(a) : e.class == a }) msg = message(msg) { "Exception raised:\n<#{mu_pp(e)}>" } - exc = MiniTest::Assertion.new(msg.call) - exc.set_backtrace(e.backtrace) - raise exc + raise MiniTest::Assertion, msg.call, e.backtrace else raise end -- cgit