class Test::Unit::StatusLineOutput

Public Instance Methods

method_missing(*a, &b) click to toggle source
# File lib/test/unit.rb, line 783
def method_missing(*a, &b) $stdout.__send__(*a, &b) end
print(s) click to toggle source
puts(*a) click to toggle source
# File lib/test/unit.rb, line 781
def puts(*a) $stdout.puts(*a) unless a.empty? end
respond_to_missing?(*a) click to toggle source
# File lib/test/unit.rb, line 782
def respond_to_missing?(*a) $stdout.respond_to?(*a) end