class Oktest::CompactReporter

Public Instance Methods

enter_scope(scope) click to toggle source

; [!xfd5o] reports filename.

# File lib/oktest.rb, line 1983
def enter_scope(scope)
  print "#{scope.filename}: "
end
exit_scope(scope) click to toggle source
# File lib/oktest.rb, line 1987
def exit_scope(scope)
  puts()
  print_exceptions()
end
exit_spec(spec, depth, status, error, parent) click to toggle source
Calls superclass method Oktest::BaseReporter#exit_spec
# File lib/oktest.rb, line 1992
def exit_spec(spec, depth, status, error, parent)
  super
  print Color.status(status, CHARS[status] || '?')
  $stdout.flush
end