File Coverage

blib/lib/OpenID/Lite/RelyingParty/Store/Null.pm
Criterion Covered Total %
statement 6 12 50.0
branch n/a
condition n/a
subroutine 2 8 25.0
pod 0 6 0.0
total 8 26 30.7


line stmt bran cond sub pod time code
1             package OpenID::Lite::RelyingParty::Store::Null;
2              
3 1     1   14 use Any::Moose;
  1         2  
  1         10  
4             with 'OpenID::Lite::Role::Storable';
5              
6             sub store_association {
7 0     0 0   return;
8             }
9              
10             sub get_association {
11 0     0 0   return;
12             }
13              
14             sub remove_association {
15 0     0 0   return 1;
16             }
17              
18             sub cleanup_associations {
19 0     0 0   return 0;
20             }
21              
22             sub use_nonce {
23 0     0 0   return 1;
24             }
25              
26             sub cleanup_nonces {
27 0     0 0   return 0;
28             }
29              
30              
31 1     1   727 no Any::Moose;
  1         3  
  1         5  
32             __PACKAGE__->meta->make_immutable;
33             1;