Class: Mutant::Reporter::CLI::Report::Subject

Inherits:
Mutant::Reporter::CLI::Report show all
Defined in:
lib/mutant/reporter/cli/report/subject.rb

Overview

Subject report printer

Constant Summary

Constants inherited from Printer

Printer::NL

Instance Method Summary collapse

Methods inherited from 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.

Run report printer

Returns:

  • (self)


19
20
21
22
23
24
25
26
# File 'lib/mutant/reporter/cli/report/subject.rb', line 19

def run
  status(subject.identification)
  subject.tests.each do |test|
    puts("- #{test.identification}")
  end
  visit_collection(object.alive_mutation_results)
  self
end