File Coverage

blib/lib/Apache2/ASP/SessionStateManager/NonPersisted.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 1 2 50.0
total 13 18 72.2


line stmt bran cond sub pod time code
1              
2             package Apache2::ASP::SessionStateManager::NonPersisted;
3              
4 23     23   89 use strict;
  23         30  
  23         627  
5 23     23   88 use warnings 'all';
  23         28  
  23         869  
6 23     23   86 use base 'Apache2::ASP::SessionStateManager';
  23         29  
  23         8801  
7              
8             sub new
9             {
10 0     0 0   return bless { }, shift;
11             }# end new()
12              
13             *create = *retrieve = \&new;
14              
15 0     0 1   sub save { 1 }
16              
17             1;# return true:
18