Class: Minitest::AbstractReporter
- Includes:
- Mutex_m
- Defined in:
- lib/minitest.rb
Overview
Defines the API for Reporters. Subclass this and override whatever you want. Go nuts.
Direct Known Subclasses
Instance Method Summary collapse
-
#passed? ⇒ Boolean
Did this run pass?.
-
#record(result) ⇒ Object
Record a result and output the Runnable#result_code.
-
#report ⇒ Object
Outputs the summary of the run.
-
#start ⇒ Object
Starts reporting on the run.
Instance Method Details
#passed? ⇒ Boolean
Did this run pass?
418 419 420 |
# File 'lib/minitest.rb', line 418 def passed? true end |
#record(result) ⇒ Object
Record a result and output the Runnable#result_code. Stores the result of the run if the run did not pass.
406 407 |
# File 'lib/minitest.rb', line 406 def record result end |
#report ⇒ Object
Outputs the summary of the run.
412 413 |
# File 'lib/minitest.rb', line 412 def report end |
#start ⇒ Object
Starts reporting on the run.
399 400 |
# File 'lib/minitest.rb', line 399 def start end |