| Net-DNS-Check documentation | Contained in the Net-DNS-Check distribution. |
Net::DNS::Check::Test::unknown - Unknown Test
use Net::DNS::Check::Test::unknown;
This class is used when we can't find the requested test class
Copyright (c) 2004 IIT-CNR Lorenzo Luconi Trombacchi - IIT-CNR
All rights reserved. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.
perl(1)
| Net-DNS-Check documentation | Contained in the Net-DNS-Check distribution. |
package Net::DNS::Check::Test::unknown; use strict; use vars qw(@ISA $VERSION); @ISA = qw(Net::DNS::Check::Test); sub new { my ($class) = shift; my ($self) = {}; return bless $self, $class; } sub test { my ($self) = shift; return; } 1; __END__