| webrobot documentation | Contained in the webrobot distribution. |
WWW::Webrobot::Print::Null - Zero response output listener
This module does nothing. It is the default output listener.
See WWW::Webrobot::pod::OutputListeners.
| webrobot documentation | Contained in the webrobot distribution. |
package WWW::Webrobot::Print::Null; use strict; use warnings; # Author: Stefan Trcek # Copyright(c) 2004 ABAS Software AG
sub new { my $class = shift; my $self = bless({}, ref($class) || $class); return $self; } sub global_start {} sub item_pre {} sub item_post {} sub global_end {} 1;