Sha256: 1d17841e6a865e3b462cce413b4de374380c7950c4a1d375a62e3d6a96e4c2b0
Contents?: true
Size: 491 Bytes
Versions: 15
Compression:
Stored size: 491 Bytes
Contents
module RailsEdgeTest::Printers class Boring def initialize @count = 0 end def begin_suite puts "" end def end_suite puts "\n#{@count} edge specs executed." end def begin_controller(_controller) print "." end def end_controller end def begin_action(_action) print "." end def end_action end def begin_edge(_edge) print "." end def end_edge @count += 1 end end end
Version data entries
15 entries across 15 versions & 1 rubygems