File Coverage

blib/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   440 use 5.006;
  3         9  
2 3     3   13 use strict;
  3         5  
  3         58  
3 3     3   10 use warnings;
  3         5  
  3         196  
4              
5             package CPAN::Distribution::ReleaseHistory::Release;
6              
7             our $VERSION = '0.002005';
8              
9             # ABSTRACT: A container for release data
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 3     3   516 use Moo qw( has );
  3         10240  
  3         17  
14              
15 3     3   2044 use CPAN::DistnameInfo;
  3         709  
  3         325  
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   8008 my $self = shift;
63              
64 12         66 return CPAN::DistnameInfo->new( $self->path );
65             }
66 3     3   15 no Moo;
  3         3  
  3         12  
67              
68             1;
69              
70             __END__