class Test::Unit::UI::RDox::TestRunner
Public Instance Methods
finished(elapsed_time)
click to toggle source
# File lib/test/spec/rdox.rb, line 14 def finished(elapsed_time) nl output_result end
indent(depth)
click to toggle source
# File lib/test/spec/rdox.rb, line 19 def indent(depth) @prefix = "" @headprefix = "==" + "=" * depth end
output_heading(heading)
click to toggle source
# File lib/test/spec/rdox.rb, line 6 def output_heading(heading) output "#{@headprefix} #{heading}" end
output_item(item)
click to toggle source
# File lib/test/spec/rdox.rb, line 10 def output_item(item) output_no_nl "* #{item}" end