File Coverage

blib/lib/WWW/Search/Null/NoVersion.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # $Id: NoVersion.pm,v 1.5 2010-12-02 23:45:57 Martin Exp $
2              
3             =head1 NAME
4              
5             WWW::Search::Null::NoVersion - class for testing WWW::Search
6              
7             =head1 SYNOPSIS
8              
9             use WWW::Search;
10             my $oSearch = new WWW::Search('Null::NoVersion');
11              
12             =head1 DESCRIPTION
13              
14             This class is a specialization of WWW::Search that has no $VERSION.
15              
16             This module is for testing the WWW::Search module.
17              
18             =head1 AUTHOR
19              
20             Martin 'Kingpin' Thurn, C, L.
21              
22             =cut
23              
24             package WWW::Search::Null::NoVersion;
25              
26 2     2   1718 use strict;
  2         4  
  2         69  
27 2     2   11 use warnings;
  2         13  
  2         92  
28              
29 2     2   12 use base 'WWW::Search';
  2         5  
  2         300  
30             our $MAINTAINER = q{Martin Thurn };
31              
32             1;
33              
34             __END__