Sha256: c28648539e8b8d95bd9b03b1253343e756f12390a64e2c03cc6212d7b08c6734
Contents?: true
Size: 543 Bytes
Versions: 9
Compression:
Stored size: 543 Bytes
Contents
module Spec module Runner module Formatter class ProgressBarFormatter < BaseTextFormatter def add_context(name, first) @output << "\n" if first @output.flush end def spec_failed(name, counter, failure) @output << 'F' @output.flush end def spec_passed(name) @output << '.' @output.flush end def start_dump @output << "\n" @output.flush end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems