class SimpleCov::Result

def covered_percent

The overall percentual coverage for this result
def covered_percent
  # Make sure that weird rounding error from #15, #23 and #24 does not occur again!
  total_lines.zero? ? 0 : 100.0 * covered_lines / total_lines
end