File Coverage

blib/lib/MojoX/Session/Store/File/Driver.pm
Criterion Covered Total %
statement 5 7 71.4
branch n/a
condition n/a
subroutine 2 4 50.0
pod 2 3 66.6
total 9 14 64.2


line stmt bran cond sub pod time code
1             package MojoX::Session::Store::File::Driver;
2              
3 2     2   4062 use Carp qw(croak);
  2         4  
  2         325  
4              
5             sub new {
6 1     1 0 3 my $class = shift;
7              
8 1         15 bless {@_}, $class;
9             }
10              
11             sub freeze {
12 0     0 1   croak "freeze() method not implemented";
13             }
14              
15             sub thaw {
16 0     0 1   croak "thaw() method not implemented";
17             }
18              
19             1;
20              
21             __END__