File Coverage

blib/lib/Plack/Session/Store/Echo.pm
Criterion Covered Total %
statement 11 13 84.6
branch n/a
condition n/a
subroutine 5 7 71.4
pod 4 4 100.0
total 20 24 83.3


line stmt bran cond sub pod time code
1             package Plack::Session::Store::Echo;
2              
3 3     3   68009 use strict;
  3         7  
  3         112  
4 3     3   16 use warnings;
  3         5  
  3         92  
5              
6 3     3   2297 use parent 'Plack::Session::Store';
  3         926  
  3         14  
7              
8              
9             our $VERSION = '1.00';
10              
11              
12 2     2 1 33 sub new { return bless({}, shift()); }
13              
14 2     2 1 17 sub fetch { return {}; }
15              
16 0     0 1   sub store { }
17              
18 0     0 1   sub remove { }
19              
20              
21             1;
22              
23              
24             __END__