File Coverage

blib/lib/Acme/Jungle/CrawlerExample.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Acme::Jungle::CrawlerExample;
2 1     1   26164 use Moose;
  0            
  0            
3             use Jungle;
4             our $VERSION = '0.01';
5              
6             has spider => (
7             is => 'ro',
8             isa => 'Jungle',
9             default => sub {
10             return Jungle->new;
11             },
12             );
13              
14              
15              
16             #################### main pod documentation begin ###################
17             ## Below is the stub of documentation for your module.
18             ## You better edit it!
19              
20              
21             =head1 NAME
22              
23             CrawlerTest - crawler test using Jungle
24              
25             =head1 SYNOPSIS
26              
27             use CrawlerTest;
28             blah blah blah
29              
30              
31             =head1 DESCRIPTION
32              
33             Stub documentation for this module was created by ExtUtils::ModuleMaker.
34             It looks like the author of the extension was negligent enough
35             to leave the stub unedited.
36              
37             Blah blah blah.
38              
39              
40             =head1 USAGE
41              
42              
43              
44             =head1 BUGS
45              
46              
47              
48             =head1 SUPPORT
49              
50              
51              
52             =head1 AUTHOR
53              
54             A. U. Thor
55             CPAN ID: MODAUTHOR
56             XYZ Corp.
57             a.u.thor@a.galaxy.far.far.away
58             http://a.galaxy.far.far.away/modules
59              
60             =head1 COPYRIGHT
61              
62             This program is free software; you can redistribute
63             it and/or modify it under the same terms as Perl itself.
64              
65             The full text of the license can be found in the
66             LICENSE file included with this module.
67              
68              
69             =head1 SEE ALSO
70              
71             perl(1).
72              
73             =cut
74              
75             #################### main pod documentation end ###################
76              
77              
78             1;
79             # The preceding line will help the module return a true value
80