Class: Mutant::Reporter::CLI::Format::Progressive Private
- Inherits:
-
Mutant::Reporter::CLI::Format
- Object
- Mutant::Reporter::CLI::Format
- Mutant::Reporter::CLI::Format::Progressive
- 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.
Format for progressive non rewindable output
Constant Summary collapse
- REPORT_FREQUENCY =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
1.0
- REPORT_DELAY =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
1 / REPORT_FREQUENCY
Instance Method Summary collapse
-
#progress(status) ⇒ String
private
Progress representation.
-
#start(env) ⇒ String
private
Start representation.
-
#test_progress(status) ⇒ String
private
Progress representation.
-
#test_start(env) ⇒ String
private
Test start representation.
Methods inherited from Mutant::Reporter::CLI::Format
Instance Method Details
#progress(status) ⇒ 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
85 86 87 |
# File 'lib/mutant/reporter/cli/format.rb', line 85 def progress(status) format(Printer::StatusProgressive, status) end |
#start(env) ⇒ 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
71 72 73 |
# File 'lib/mutant/reporter/cli/format.rb', line 71 def start(env) format(Printer::Env, env) end |
#test_progress(status) ⇒ 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
92 93 94 |
# File 'lib/mutant/reporter/cli/format.rb', line 92 def test_progress(status) format(Printer::Test::StatusProgressive, status) end |
#test_start(env) ⇒ 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.
Test start representation
78 79 80 |
# File 'lib/mutant/reporter/cli/format.rb', line 78 def test_start(env) format(Printer::Test::Env, env) end |