File Coverage

blib/lib/Async/Redis/Error/Protocol.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Async::Redis::Error::Protocol;
2              
3 74     74   1037 use strict;
  74         159  
  74         3611  
4 74     74   392 use warnings;
  74         134  
  74         4378  
5 74     74   1258 use 5.018;
  74         260  
6              
7             our $VERSION = '0.001';
8              
9 74     74   472 use parent 'Async::Redis::Error';
  74         170  
  74         482  
10              
11 1     1 1 738 sub data { shift->{data} }
12              
13             1;
14              
15             __END__