File Coverage

blib/lib/HTTP/Session/Store/Null.pm
Criterion Covered Total %
statement 7 8 87.5
branch n/a
condition n/a
subroutine 7 8 87.5
pod 4 6 66.6
total 18 22 81.8


line stmt bran cond sub pod time code
1             package HTTP::Session::Store::Null;
2 4     4   41501 use strict;
  4         7  
  4         177  
3 4     4   20 use warnings;
  4         9  
  4         614  
4              
5 6     6 0 1094855 sub new { bless {}, shift }
6              
7       1 1   sub select { }
8       7 1   sub insert { }
9       1 1   sub update { }
10       1 1   sub delete { }
11 0     0 0   sub cleanup { Carp::croak "This storage doesn't support cleanup" }
12              
13             1;
14             __END__