File Coverage

blib/lib/Dir/Manifest/Key.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Dir::Manifest::Key;
2             $Dir::Manifest::Key::VERSION = '0.4.0';
3 1     1   8 use strict;
  1         2  
  1         30  
4 1     1   6 use warnings;
  1         2  
  1         25  
5 1     1   19 use 5.014;
  1         4  
6              
7 1     1   5 use Path::Tiny qw/ path tempdir tempfile cwd /;
  1         2  
  1         49  
8              
9 1     1   545 use Moo;
  1         11723  
  1         5  
10              
11             has 'key' => ( is => 'ro', required => 1 );
12             has 'fh' => ( is => 'ro', required => 1 );
13              
14             1;
15              
16             __END__