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

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

Overview

Progress printer for configuration

Constant Summary

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

NL

Instance Method Summary collapse

Methods inherited from Mutant::Reporter::CLI::Printer

run

Methods included from Delegator

included

Instance Method Details

#runself

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:

  • (self)


175
176
177
178
179
180
181
182
183
184
# File 'lib/mutant/reporter/cli/printer.rb', line 175

def run
  info 'Mutant configuration:'
  info 'Matcher:            %s',      object.matcher_config.inspect
  info 'Integration:        %s',      object.integration.name
  info 'Expect Coverage:    %0.2f%%', object.expected_coverage.inspect
  info 'Processes:          %d',      object.processes
  info 'Includes:           %s',      object.includes.inspect
  info 'Requires:           %s',      object.requires.inspect
  self
end