class SimpleCov::SourceFile::Line

def status

as a css class in report generation
The status of this line - either covered, missed, skipped or never. Useful i.e. for direct use
def status
  return "skipped" if skipped?
  return "never" if never?
  return "missed" if missed?
  return "covered" if covered?
end