File Coverage

blib/lib/IPC/Manager/Serializer.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package IPC::Manager::Serializer;
2 2     2   900 use strict;
  2         6  
  2         79  
3 2     2   8 use warnings;
  2         4  
  2         118  
4              
5             our $VERSION = '0.000005';
6              
7 2     2   10 use Carp qw/croak/;
  2         3  
  2         232  
8              
9 0     0 1   sub serialize { croak "Not Implemented" }
10 0     0 1   sub deserialize { croak "Not Implemented" }
11              
12             1;
13              
14             __END__