Sha256: 6779948299c8c80e601980ddbeea32c414adb908249d45cb99ff381e46d20266
Contents?: true
Size: 542 Bytes
Versions: 195
Compression:
Stored size: 542 Bytes
Contents
require 'mspec/expectations/expectations' require 'mspec/runner/formatters/dotted' class UnitdiffFormatter < DottedFormatter 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 def backtrace(exc) exc.backtrace && exc.backtrace.join("\n") end private :backtrace end
Version data entries
195 entries across 171 versions & 4 rubygems