File Coverage

lib/CPAN/Distribution/ReleaseHistory/Release.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 26 26 100.0


line stmt bran cond sub pod time code
1 3     3   798 use 5.006;
  3         9  
2 3     3   16 use strict;
  3         6  
  3         86  
3 3     3   16 use warnings;
  3         5  
  3         265  
4              
5             package CPAN::Distribution::ReleaseHistory::Release;
6              
7             our $VERSION = '0.002004';
8              
9             # ABSTRACT: A container for release data
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 3     3   526 use Moo qw( has );
  3         11266  
  3         19  
14              
15 3     3   2569 use CPAN::DistnameInfo;
  3         819  
  3         410  
16              
17              
18              
19              
20              
21              
22              
23              
24              
25             has 'distname' => ( is => 'ro' );
26              
27              
28              
29              
30              
31              
32              
33              
34              
35             has 'path' => ( is => 'ro' );
36              
37              
38              
39              
40              
41              
42              
43             has 'timestamp' => ( is => 'ro' );
44              
45              
46              
47              
48              
49              
50              
51             has 'size' => ( is => 'ro' );
52              
53              
54              
55              
56              
57              
58              
59             has 'distinfo' => ( is => 'lazy' );
60              
61             sub _build_distinfo {
62 12     12   8254 my $self = shift;
63              
64 12         60 return CPAN::DistnameInfo->new( $self->path );
65             }
66 3     3   18 no Moo;
  3         5  
  3         17  
67              
68             1;
69              
70             __END__