Method: SimpleCov::Formatter::SimpleFormatter#format
- Defined in:
- lib/simplecov/formatter/simple_formatter.rb
permalink #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 |