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   89441 use strict;
  1         3  
  1         23  
3 1     1   4 use warnings;
  1         2  
  1         20  
4 1     1   375 use CHI::Test;
  1         141522  
  1         7  
5 1     1   7247 use base qw(CHI::t::Driver);
  1         2  
  1         559  
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;