File Coverage

blib/lib/CPAN/Documentation/HTML/Entry.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package CPAN::Documentation::HTML::Entry;
2             BEGIN {
3 1     1   32 $CPAN::Documentation::HTML::Entry::AUTHORITY = 'cpan:GETTY';
4             }
5             {
6             $CPAN::Documentation::HTML::Entry::VERSION = '0.002';
7             }
8             # ABSTRACT: An entry (a module, binary or documentation) in the HTML
9              
10 1     1   6 use Moo;
  1         3  
  1         7  
11              
12             has module => (
13             is => 'ro',
14             required => 1,
15             );
16              
17             has dist => (
18             is => 'ro',
19             required => 1,
20             );
21              
22             #
23             # 0 Module
24             # 1 Documentation
25             # 2 Script
26             #
27              
28             has type => (
29             is => 'ro',
30             required => 1,
31             );
32              
33             has pod => (
34             is => 'ro',
35             required => 1,
36             );
37              
38             1;
39             __END__