Method: Minitest::SummaryReporter#start

Defined in:
lib/minitest.rb

#startObject

:startdoc:

[View source]

868
869
870
871
872
873
874
875
876
877
878
# File 'lib/minitest.rb', line 868

def start # :nodoc:
  super

  io.puts "Run options: #{options[:args]}"
  io.puts
  io.puts "# Running:"
  io.puts

  self.sync = io.respond_to? :"sync="
  self.old_sync, io.sync = io.sync, true if self.sync
end