class Minitest::SummaryReporter

Public Instance Methods

start() click to toggle source
Calls superclass method
# File lib/computering/dsl/spec.rb, line 7
def start
  # REM (ps) monkeypatch it so that there is not so much verbose output
  super
  self.sync = io.respond_to? :"sync="
  self.old_sync, io.sync = io.sync, true if self.sync
end