# File lib/mspec/runner/formatters/dotted.rb, line 81 81: def finish 82: print "\n" 83: count = 0 84: @exceptions.each do |exc| 85: outcome = exc.failure? ? "FAILED" : "ERROR" 86: print "\n#{count += 1})\n#{exc.description} #{outcome}\n" 87: print exc.message, "\n" 88: print exc.backtrace, "\n" 89: end 90: print "\n#{@timer.format}\n\n#{@tally.format}\n" 91: end