class Minitest::Test

def with_info_handler &block # :nodoc:

:nodoc:
def with_info_handler &block # :nodoc:
  t0 = Time.now
  handler = lambda do
    warn "\nCurrent: %s#%s %.2fs" % [self.class, self.name, Time.now - t0]
  end
  self.class.on_signal "INFO", handler, &block
end