class Cucumber::Formatter::Rerun

def after_test_case(test_case, result)

def after_test_case(test_case, result)
  return if result.passed?
  @failures[test_case.location.file] ||= []
  @failures[test_case.location.file] << test_case.location.line
end