File Coverage

blib/lib/WWW/Chain/UA.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package WWW::Chain::UA;
2             BEGIN {
3 2     2   24987 $WWW::Chain::UA::AUTHORITY = 'cpan:GETTY';
4             }
5             {
6             $WWW::Chain::UA::VERSION = '0.003';
7             }
8             # ABSTRACT: Role for classes which have a request_chain function for a WWW::Chain object
9              
10 2     2   3103 use Moo::Role;
  2         14082  
  2         16  
11              
12             requires qw( request_chain );
13              
14             1;
15             __END__