Module: Minitest::Reportable
Overview
Shared code for anything that can get passed to a Reporter. See Minitest::Test & Minitest::Result.
Instance Method Summary collapse
-
#class_name ⇒ Object
:nodoc:.
-
#error? ⇒ Boolean
Did this run error?.
-
#location ⇒ Object
The location identifier of this test.
-
#passed? ⇒ Boolean
Did this run pass?.
-
#result_code ⇒ Object
Returns “.”, “F”, or “E” based on the result of the run.
-
#skipped? ⇒ Boolean
Was this run skipped?.
Instance Method Details
permalink #class_name ⇒ Object
:nodoc:
495 496 497 |
# File 'lib/minitest.rb', line 495 def class_name # :nodoc: raise NotImplementedError, "subclass responsibility" end |
permalink #error? ⇒ Boolean
Did this run error?
516 517 518 |
# File 'lib/minitest.rb', line 516 def error? self.failures.any? { |f| UnexpectedError === f } end |
permalink #location ⇒ Object
The location identifier of this test. Depends on a method existing called class_name.
490 491 492 493 |
# File 'lib/minitest.rb', line 490 def location loc = " [#{self.failure.location}]" unless passed? or error? "#{self.class_name}##{self.name}#{loc}" end |
permalink #passed? ⇒ Boolean
Did this run pass?
Note: skipped runs are not considered passing, but they don’t cause the process to exit non-zero.
482 483 484 |
# File 'lib/minitest.rb', line 482 def passed? not self.failure end |
permalink #result_code ⇒ Object
Returns “.”, “F”, or “E” based on the result of the run.
502 503 504 |
# File 'lib/minitest.rb', line 502 def result_code self.failure and self.failure.result_code or "." end |
permalink #skipped? ⇒ Boolean
Was this run skipped?
509 510 511 |
# File 'lib/minitest.rb', line 509 def skipped? self.failure and Skip === self.failure end |