# # Testing OpenWFE # # John Mettraux at openwfe.org # # Mon Oct 9 22:19:44 JST 2006 # class Tracer def initialize super @trace = "" end def to_s @trace.to_s.strip end def << s @trace << s end def clear @trace = "" end end