Sha256: 072bb9cdae636017c1522c5b1f331f70db3f0e9e18515e991b56bde050d64929
Contents?: true
Size: 531 Bytes
Versions: 17
Compression:
Stored size: 531 Bytes
Contents
require 'test/spec/dox' module Test::Unit::UI # :nodoc: module RDox # :nodoc: class TestRunner < Test::Unit::UI::SpecDox::TestRunner def output_heading(heading) output "#{@headprefix} #{heading}" end def output_item(item) output_no_nl "* #{item}" end def finished(elapsed_time) nl output_result end def indent(depth) @prefix = "" @headprefix = "==" + "=" * depth end end end end
Version data entries
17 entries across 17 versions & 5 rubygems