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.60';
3 1     1   563 use Moo;
  1         1  
  1         8  
4 1     1   476 use strict;
  1         2  
  1         22  
5 1     1   3 use warnings;
  1         2  
  1         96  
6              
7             extends 'CHI::Driver';
8              
9 1     1 0 6 sub fetch { undef }
10 1     1 0 2 sub store { undef }
11 0     0 0 0 sub remove { undef }
12 0     0 0 0 sub clear { undef }
13 1     1 0 29 sub get_keys { return () }
14 1     1 0 57 sub get_namespaces { return () }
15              
16             1;
17              
18             __END__