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.6.1';
3 1     1   7 use strict;
  1         3  
  1         28  
4 1     1   5 use warnings;
  1         2  
  1         24  
5 1     1   17 use 5.014;
  1         3  
6              
7 1     1   9 use Path::Tiny qw/ path tempdir tempfile cwd /;
  1         1  
  1         49  
8              
9 1     1   549 use Moo;
  1         11220  
  1         5  
10              
11             has 'key' => ( is => 'ro', required => 1 );
12             has 'fh' => ( is => 'ro', required => 1 );
13              
14             1;
15              
16             __END__