File Coverage

blib/lib/CHI/Driver/Cache/RedisDB/t/CHIDriverTests.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 2 0.0
total 21 23 91.3


line stmt bran cond sub pod time code
1             package CHI::Driver::Cache::RedisDB::t::CHIDriverTests;
2 1     1   89707 use strict;
  1         2  
  1         24  
3 1     1   5 use warnings;
  1         2  
  1         19  
4 1     1   362 use CHI::Test;
  1         143047  
  1         9  
5 1     1   8070 use base qw(CHI::t::Driver);
  1         3  
  1         653  
6              
7 1     1 0 13 sub testing_driver_class { 'CHI::Driver::Cache::RedisDB' }
8              
9             sub new_cache_options {
10 1     1 0 3970 my $self = shift;
11              
12             return (
13 1         7 $self->SUPER::new_cache_options(),
14             );
15             }
16              
17             1;