Object
A ridiculously simple formatter for SimpleCov results.
Takes a SimpleCov::Result and generates a string out of it
# File lib/simplecov/formatter/simple_formatter.rb, line 6 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
Generated with the Darkfish Rdoc Generator 2.