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.250';
4              
5 7     7   63 use Moo;
  7         14  
  7         44  
6 7     7   4168 use IO::String;
  7         10747  
  7         491  
7              
8             has 'url' => (is => 'ro');
9             has 'size' => (is => 'ro');
10             has 'filename' => (is => 'ro');
11              
12             1;
13              
14             __END__