Class: Evilution::Reporter::CLI::LineFormatters::TruncationNotice

Inherits:
Object
  • Object
show all
Defined in:
lib/evilution/reporter/cli/line_formatters/truncation_notice.rb

Instance Method Summary collapse

Instance Method Details

#format(summary) ⇒ Object



6
7
8
9
10
# File 'lib/evilution/reporter/cli/line_formatters/truncation_notice.rb', line 6

def format(summary)
  return nil unless summary.truncated?

  "[TRUNCATED] Stopped early due to --fail-fast"
end