Class: Mutant::Reporter::CLI::Printer::Config
- Inherits:
-
Mutant::Reporter::CLI::Printer
- Object
- Mutant::Reporter::CLI::Printer
- Mutant::Reporter::CLI::Printer::Config
- Defined in:
- lib/mutant/reporter/cli/printer.rb
Overview
Progress printer for configuration
Constant Summary
Constants inherited from Mutant::Reporter::CLI::Printer
Instance Method Summary collapse
-
#run ⇒ self
private
Report configuration.
Methods inherited from Mutant::Reporter::CLI::Printer
Methods included from Delegator
Instance Method Details
#run ⇒ self
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 configuration
rubocop:disable AbcSize
202 203 204 205 206 207 208 209 210 211 |
# File 'lib/mutant/reporter/cli/printer.rb', line 202 def run info 'Mutant configuration:' info 'Matcher: %s', object.matcher.inspect info 'Integration: %s', object.integration.name info 'Expect Coverage: %0.2f%%', object.expected_coverage.inspect info 'Jobs: %d', object.jobs info 'Includes: %s', object.includes.inspect info 'Requires: %s', object.requires.inspect self end |