File Coverage

lib/Parse/BACKPAN/Packages/Distribution.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Parse::BACKPAN::Packages::Distribution;
2 1     1   5 use strict;
  1         2  
  1         28  
3 1     1   4 use warnings;
  1         1  
  1         23  
4 1     1   4 use base qw( Class::Accessor::Fast );
  1         2  
  1         87  
5             __PACKAGE__->mk_accessors(
6             qw( prefix date dist version maturity filename
7             cpanid distvname packages )
8             );
9              
10             1;
11              
12             __END__