[前][次][番号順一覧][スレッド一覧]

ruby-changes:67893

From: Hiroshi <ko1@a...>
Date: Sat, 11 Sep 2021 08:48:33 +0900 (JST)
Subject: [ruby-changes:67893] 206af4727c (master): Merge poke methods

https://git.ruby-lang.org/ruby.git/commit/?id=206af4727c

From 206af4727c2892e755d1c82fcd211d4712fe658c Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Wed, 8 Sep 2021 12:32:04 +0900
Subject: Merge poke methods

---
 tool/lib/test/unit.rb | 34 +++++++++++++++-------------------
 1 file changed, 15 insertions(+), 19 deletions(-)

diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb
index 4a89cca..df29981 100644
--- a/tool/lib/test/unit.rb
+++ b/tool/lib/test/unit.rb
@@ -1433,24 +1433,6 @@ module Test https://github.com/ruby/ruby/blob/trunk/tool/lib/test/unit.rb#L1433
       # Writes status for failed test +meth+ in +klass+ which finished with
       # exception +e+
 
-      def puke klass, meth, e
-        e = case e
-            when MiniTest::Skip then
-              @skips += 1
-              return "S" unless @verbose
-              "Skipped:\n#{klass}##{meth} [#{location e}]:\n#{e.message}\n"
-            when MiniTest::Assertion then
-              @failures += 1
-              "Failure:\n#{klass}##{meth} [#{location e}]:\n#{e.message}\n"
-            else
-              @errors += 1
-              bt = MiniTest::filter_backtrace(e.backtrace).join "\n    "
-              "Error:\n#{klass}##{meth}:\n#{e.class}: #{e.message.b}\n    #{bt}\n"
-            end
-        @report << e
-        e[0, 1]
-      end
-
       def initialize # :nodoc:
         @report = []
         @errors = @failures = @skips = 0
@@ -1588,7 +1570,21 @@ module Test https://github.com/ruby/ruby/blob/trunk/tool/lib/test/unit.rb#L1570
         #   this overriding is for minitest feature that skip messages are
         #   hidden when not verbose (-v), note this is temporally.
         n = report.size
-        rep = super
+        e = case e
+            when MiniTest::Skip then
+              @skips += 1
+              return "S" unless @verbose
+              "Skipped:\n#{klass}##{meth} [#{location e}]:\n#{e.message}\n"
+            when MiniTest::Assertion then
+              @failures += 1
+              "Failure:\n#{klass}##{meth} [#{location e}]:\n#{e.message}\n"
+            else
+              @errors += 1
+              bt = MiniTest::filter_backtrace(e.backtrace).join "\n    "
+              "Error:\n#{klass}##{meth}:\n#{e.class}: #{e.message.b}\n    #{bt}\n"
+            end
+        @report << e
+        rep = e[0, 1]
         if MiniTest::Skip === e and /no message given\z/ =~ e.message
           report.slice!(n..-1)
           rep = "."
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]