class Minitest::Reporters::HtmlReporter

def percent_passes

The percentage of tests that passed, calculated in a way that avoids rounding errors
def percent_passes
  100 - percent_skipps - percent_errors_failures
end