Module: SimpleCov::Formatter::Console::BlockOutput

Defined in:
lib/simplecov-console/output/block.rb

Instance Method Summary collapse

Instance Method Details

#output(files, root, show_branch) ⇒ Object

format per-file results output as plain text blocks



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/simplecov-console/output/block.rb', line 6

def output(files, root, show_branch)
  blocks = []
  files.each do |f|
    block = []
    block << sprintf("%8.8s: %s", 'file', f.filename.gsub(root + "/", ''))
    block << sprintf("%8.8s: %s (%d/%d lines)", 'coverage',
                colorize(sprintf("%.2f%%", f.covered_percent)),
                f.covered_lines.count, f.lines_of_code)
    block << sprintf("%8.8s: %s", 'missed', trunc(missed(f.missed_lines).join(", ")))
    if show_branch
      block << sprintf("%8.8s: %s (%d/%d branches)", 'branches',
                colorize(sprintf("%.2f%%", f.coverage_statistics[:branch].percent)),
                (f.total_branches.count - f.missed_branches.count), f.total_branches.count)
      block << sprintf("%8.8s: %s", 'missed', branches_missed(f.missed_branches).join(", "))
    end
    blocks << block.join("\n")
  end

  "\n" + blocks.join("\n\n") + "\n\n"
end