Class: Mutant::Reporter::CLI::Format Private
- Inherits:
-
Object
- Object
- Mutant::Reporter::CLI::Format
- Includes:
- Unparser::AbstractType
- Defined in:
- lib/mutant/reporter/cli/format.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
CLI output format
rubocop:disable Style/FormatString
Direct Known Subclasses
Defined Under Namespace
Classes: Output, Progressive
Instance Method Summary collapse
-
#delay ⇒ Float
private
Report delay in seconds.
-
#progress ⇒ String
private
Progress representation.
-
#start ⇒ String
private
Start representation.
-
#test_progress ⇒ String
private
Progress representation.
Instance Method Details
#delay ⇒ Float
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Report delay in seconds
32 33 34 |
# File 'lib/mutant/reporter/cli/format.rb', line 32 def delay self.class::REPORT_DELAY end |
#progress ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Progress representation
22 |
# File 'lib/mutant/reporter/cli/format.rb', line 22 abstract_method :progress |
#start ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Start representation
17 |
# File 'lib/mutant/reporter/cli/format.rb', line 17 abstract_method :start |
#test_progress ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Progress representation
27 |
# File 'lib/mutant/reporter/cli/format.rb', line 27 abstract_method :test_progress |