diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-21 12:33:44 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-21 12:33:44 +0000 |
commit | 8932916c81e367ee5b06fb697c3f1c6561bf2bc3 (patch) | |
tree | c3430184974505052ead450a5b7d4eb8135a0534 | |
parent | e502448b1307e0285ddd729e404378f3d270532f (diff) | |
download | ruby-8932916c81e367ee5b06fb697c3f1c6561bf2bc3.tar.gz ruby-8932916c81e367ee5b06fb697c3f1c6561bf2bc3.tar.xz ruby-8932916c81e367ee5b06fb697c3f1c6561bf2bc3.zip |
* 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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/test/unit.rb | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Tue Oct 21 21:33:36 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * lib/test/unit.rb (assert_nothing_raised): raise with backtrace. + Tue Oct 21 20:12:19 2008 Tanaka Akira <akr@fsij.org> * 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 |