File Coverage

blib/lib/OpenID/Lite/Role/AgentHandler.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 OpenID::Lite::Role::AgentHandler;
2              
3 2     2   1033 use Any::Moose '::Role';
  2         4  
  2         12  
4              
5 2     2   3187 use LWP::UserAgent;
  2         54894  
  2         94  
6              
7             has 'agent' => ( is => 'rw', default => sub { LWP::UserAgent->new }, );
8              
9             1;
10