From e502448b1307e0285ddd729e404378f3d270532f Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 21 Oct 2008 11:13:28 +0000 Subject: * lib/test/unit.rb (assert_nothing_raised): set backtrace. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/test/unit.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/test/unit.rb b/lib/test/unit.rb index 0674ad4bf..57ae020b2 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -82,7 +82,9 @@ 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)}>" } - assert(false, msg) + exc = MiniTest::Assertion.new(msg.call) + exc.set_backtrace(e.backtrace) + raise exc else raise end -- cgit