File Coverage

blib/lib/WebService/GrowthBook/AbstractFeatureCache.pm
Criterion Covered Total %
statement 12 28 42.8
branch n/a
condition n/a
subroutine 4 7 57.1
pod 0 3 0.0
total 16 38 42.1


line stmt bran cond sub pod time code
1             package WebService::GrowthBook::AbstractFeatureCache;
2 8     8   264322 use strict;
  8         19  
  8         547  
3 8     8   58 use warnings;
  8         71  
  8         522  
4 8     8   640 no indirect;
  8         1856  
  8         1128  
5 8     8   1436 use Object::Pad;
  8         14879  
  8         57  
6              
7             our $VERSION = '0.003'; ## VERSION
8              
9             class WebService::GrowthBook::AbstractFeatureCache {
10 0     0 0   method get($key){
  0            
  0            
  0            
11 0           die "get not implemented";
12             }
13 0     0 0   method set($key, $value, $ttl){
  0            
  0            
  0            
  0            
  0            
14 0           die "set not implemented";
15             }
16 0     0 0   method clear(){
  0            
  0            
17 0           die "clear not implemented";
18             }
19             };
20              
21             1;