WWW::Webrobot::Print::Null - Zero response output listener


webrobot documentation Contained in the webrobot distribution.

Index


Code Index:

NAME

Top

WWW::Webrobot::Print::Null - Zero response output listener

DESCRIPTION

Top

This module does nothing. It is the default output listener.

METHODS

Top

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;