File Coverage

blib/lib/MojoX/Plugin/AnyCache/Serialiser.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 18 66.6


line stmt bran cond sub pod time code
1             package MojoX::Plugin::AnyCache::Serialiser;
2              
3 3     3   8936 use strict;
  3         8  
  3         125  
4 3     3   17 use warnings;
  3         4  
  3         82  
5 3     3   16 use Mojo::Base '-base';
  3         9  
  3         23  
6              
7             has 'config';
8              
9 0     0 0   sub serialise { die("Must be overridden in serialiser module") };
10 0     0 0   sub deserialise { die("Must be overridden in serialiser module") };
11              
12             1;