File Coverage

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


line stmt bran cond sub pod time code
1 3     3   875 use 5.006;
  3         9  
  3         102  
2 3     3   10 use strict;
  3         3  
  3         78  
3 3     3   12 use warnings;
  3         8  
  3         172  
4              
5             package CPAN::Distribution::ReleaseHistory::Release;
6              
7             our $VERSION = '0.002003';
8              
9             # ABSTRACT: A container for release data
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 3     3   494 use Moo qw( has );
  3         10993  
  3         16  
14              
15 3     3   2062 use CPAN::DistnameInfo;
  3         701  
  3         265  
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   4643 my $self = shift;
63              
64 12         55 return CPAN::DistnameInfo->new( $self->path );
65             }
66 3     3   13 no Moo;
  3         3  
  3         14  
67              
68             1;
69              
70             __END__