Class: Mutant::Reporter::CLI::Printer::Subject::Runner::Details

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

Overview

Detailed subject printer

Constant Summary

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

REGISTRY

Instance Method Summary collapse

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

build, finalize, handle, run, visit

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.

Run subject details printer



136
137
138
139
140
141
142
# File 'lib/mutant/reporter/cli/printer/subject.rb', line 136

def run
  puts(subject.identification)
  object.failed_mutations.each do |mutation|
    visit(mutation)
  end
  print_stats
end