class Minitest::ProgressReporter

def prerecord klass, name #:nodoc:

:nodoc:
def prerecord klass, name #:nodoc:
  if options[:verbose] then
    io.print "%s#%s = " % [klass.name, name]
    io.flush
  end
end

def record result # :nodoc:

:nodoc:
def record result # :nodoc:
  io.print "%.2f s = " % [result.time] if options[:verbose]
  io.print result.result_code
  io.puts if options[:verbose]
end