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   27640 use strict;
  4         8  
  4         94  
3 4     4   17 use warnings;
  4         6  
  4         305  
4              
5 6     6 0 421 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__