Class Turn::PrettyReporter
In: lib/turn/reporters/pretty_reporter.rb
Parent: Reporter

Pretty Reporter (by Paydro)

Example output:

   TestCaseName:
        PASS test: Succesful test case.  (0:00:02:059)
       ERROR test: Bogus test case.  (0:00:02:059)
        FAIL test: Failed test case.  (0:00:02:059)

Methods

Constants

TAB_SIZE = 10   Second column left padding in chars.
TRACE_MARK = '@ '   Character to put in front of backtrace.

Public Instance methods

Invoked when a test raises an exception.

Invoked when a test raises an assertion.

Invoked after all tests in a testcase have ben run.

After all tests are run, this is the last observable action.

Invoked when a test passes.

Invoked when a test is skipped.

Invoked before a testcase is run.

At the very start, before any testcases are run, this is called.

Invoked before a test is run.

[Validate]