Class: UnitdiffFormatter

Inherits:
DottedFormatter show all
Defined in:
lib/mspec/runner/formatters/unit.rb

Instance Attribute Summary

Attributes inherited from DottedFormatter

#exceptions, #tally, #timer

Instance Method Summary collapse

Methods inherited from DottedFormatter

#after, #before, #exception, #exception?, #failure?, #initialize, #print, #register

Constructor Details

This class inherits a constructor from DottedFormatter

Instance Method Details

#finishObject



5
6
7
8
9
10
11
12
13
14
15
# File 'lib/mspec/runner/formatters/unit.rb', line 5

def finish
  print "\n\n#{@timer.format}\n"
  count = 0
  @exceptions.each do |exc|
    outcome = exc.failure? ? "FAILED" : "ERROR"
    print "\n#{count += 1})\n#{exc.description} #{outcome}\n"
    print exc.message, ": \n"
    print exc.backtrace, "\n"
  end
  print "\n#{@tally.format}\n"
end