Method: Minitest::StatisticsReporter#record
- Defined in:
- lib/minitest.rb
#record(result) ⇒ Object
:nodoc:
609 610 611 612 613 614 |
# File 'lib/minitest.rb', line 609 def record result # :nodoc: self.count += 1 self.assertions += result.assertions results << result if not result.passed? or result.skipped? end |