Class: Mutant::Reporter::CLI::Printer::Config

Inherits:
Mutant::Reporter::CLI::Printer show all
Defined in:
lib/mutant/reporter/cli/printer/config.rb

Overview

Printer for mutation config

Constant Summary

Constants inherited from Mutant::Reporter::CLI::Printer

NL

Instance Method Summary collapse

Methods included from Delegator

included

Instance Method Details

#runundefined

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

Parameters:

Returns:

  • (undefined)


15
16
17
18
19
20
21
22
23
# File 'lib/mutant/reporter/cli/printer/config.rb', line 15

def run
  info 'Mutant configuration:'
  info 'Matcher:         %s',      object.matcher.inspect
  info 'Integration:     %s',      object.integration
  info 'Expect Coverage: %0.2f%%', (object.expected_coverage * 100)
  info 'Jobs:            %d',      object.jobs
  info 'Includes:        %s',      object.includes
  info 'Requires:        %s',      object.requires
end