File Coverage

blib/lib/CHI/Driver/Cache/RedisDB/t/CHIDriverTests.pm
Criterion Covered Total %
statement 12 15 80.0
branch n/a
condition n/a
subroutine 4 6 66.6
pod 0 2 0.0
total 16 23 69.5


line stmt bran cond sub pod time code
1             package CHI::Driver::Cache::RedisDB::t::CHIDriverTests;
2 1     1   109993 use strict;
  1         2  
  1         25  
3 1     1   5 use warnings;
  1         2  
  1         37  
4 1     1   388 use CHI::Test;
  1         148175  
  1         7  
5 1     1   7927 use base qw(CHI::t::Driver);
  1         3  
  1         636  
6              
7 0     0 0   sub testing_driver_class { 'CHI::Driver::Cache::RedisDB' }
8              
9             sub new_cache_options {
10 0     0 0   my $self = shift;
11              
12             return (
13 0           $self->SUPER::new_cache_options(),
14             );
15             }
16              
17             1;