lib/covered/statistics.rb in covered-0.10.4 vs lib/covered/statistics.rb in covered-0.10.5
- old
+ new
@@ -46,8 +46,10 @@
include Ratio
def print(output)
output.puts "* #{count} files checked; #{executed_count}/#{executable_count} lines executed; #{percentage.to_f.round(2)}% covered."
+
+ # Could output funny message here, especially for 100% coverage.
end
end
end