File Coverage

blib/lib/CHI/Driver/Null.pm
Criterion Covered Total %
statement 13 15 86.6
branch n/a
condition n/a
subroutine 7 9 77.7
pod 0 6 0.0
total 20 30 66.6


line stmt bran cond sub pod time code
1             package CHI::Driver::Null;
2             $CHI::Driver::Null::VERSION = '0.61';
3 1     1   451 use Moo;
  1         3  
  1         5  
4 1     1   337 use strict;
  1         3  
  1         18  
5 1     1   5 use warnings;
  1         2  
  1         103  
6              
7             extends 'CHI::Driver';
8              
9 1     1 0 7 sub fetch { undef }
10 1     1 0 3 sub store { undef }
11 0     0 0 0 sub remove { undef }
12 0     0 0 0 sub clear { undef }
13 1     1 0 6 sub get_keys { return () }
14 1     1 0 46 sub get_namespaces { return () }
15              
16             1;
17              
18             __END__