Class: Mutant::Reporter::CLI::Printer::Config Private
- Inherits:
-
Mutant::Reporter::CLI::Printer
- Object
- Mutant::Reporter::CLI::Printer
- Mutant::Reporter::CLI::Printer::Config
- Defined in:
- lib/mutant/reporter/cli/printer/config.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.
Printer for mutation config
Constant Summary
Constants inherited from Mutant::Reporter::CLI::Printer
Instance Method Summary collapse
-
#run ⇒ undefined
private
Report configuration.
Methods inherited from Mutant::Reporter::CLI::Printer
Methods included from Procto
Instance Method Details
#run ⇒ undefined
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 Metrics/AbcSize
17 18 19 20 21 22 23 24 25 26 |
# File 'lib/mutant/reporter/cli/printer/config.rb', line 17 def run info 'Usage: %s', object.usage.value info 'Matcher: %s', object.matcher.inspect info 'Integration: %s', object.integration.name || 'null' info 'Jobs: %s', object.jobs || 'auto' info 'Includes: %s', object.includes info 'Requires: %s', object.requires info 'Operators: %s', object.mutation.operators.class.operators_name info 'MutationTimeout: %0.9g', object.mutation.timeout if object.mutation.timeout end |