File Coverage

blib/lib/Catmandu/BagIt/Fetch.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Catmandu::BagIt::Fetch;
2              
3             our $VERSION = '0.240';
4              
5 7     7   50 use Moo;
  7         31  
  7         41  
6 7     7   4158 use IO::String;
  7         10368  
  7         432  
7              
8             has 'url' => (is => 'ro');
9             has 'size' => (is => 'ro');
10             has 'filename' => (is => 'ro');
11              
12             1;
13              
14             __END__