File Coverage

blib/lib/WWW/Monitor/Site.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package WWW::Monitor::Site;
2              
3 1     1   21696 use warnings;
  1         2  
  1         28  
4 1     1   6 use strict;
  1         2  
  1         28  
5              
6 1     1   386 use WWW::Robot;
  0            
  0            
7             use WWW::Monitor;
8              
9             =head1 NAME
10              
11             WWW::Monitor::Site - Monitor entire websites for updates and changes
12              
13             =head1 VERSION
14              
15             This document describes WWW::Monitor::Site version 0.01_01
16              
17             =cut
18              
19             our $VERSION = '0.01_01';
20              
21             =head1 DESCRIPTION
22              
23             Quick summary of what the module does.
24              
25             Perhaps a little code snippet.
26              
27             use WWW::Monitor::Site;
28              
29             my $foo = WWW::Monitor::Site->new();
30              
31             =head1 FUNCTIONS
32              
33             =over
34              
35             =back
36              
37             =cut
38              
39             1;
40              
41             __END__