class Minitest::SummaryReporter

def aggregated_results io # :nodoc:

:nodoc:
def aggregated_results io # :nodoc:
  filtered_results = results.dup
  filtered_results.reject!(&:skipped?) unless options[:verbose]
  filtered_results.each_with_index { |result, i|
    io.puts "\n%3d) %s" % [i+1, result]
  }
  io.puts
  io
end