class Slather::Project

def dedupe(coverage_files)

def dedupe(coverage_files)
  coverage_files.group_by(&:source_file_pathname).values.map { |cf_array| cf_array.max_by(&:percentage_lines_tested) }
end