Class: SimpleCov::Formatter::SimpleFormatter
- Inherits:
-
Object
- Object
- SimpleCov::Formatter::SimpleFormatter
- Defined in:
- lib/simplecov/formatter/simple_formatter.rb
Overview
A ridiculously simple formatter for SimpleCov results.
Instance Method Summary collapse
-
#format(result) ⇒ Object
Takes a SimpleCov::Result and generates a string out of it.
Instance Method Details
#format(result) ⇒ Object
Takes a SimpleCov::Result and generates a string out of it
10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/simplecov/formatter/simple_formatter.rb', line 10 def format(result) output = +"" result.groups.each do |name, files| output << "Group: #{name}\n" output << "=" * 40 output << "\n" files.each do |file| output << "#{file.filename} (coverage: #{file.covered_percent.round(2)}%)\n" end output << "\n" end output end |