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 69     69   852 use strict;
  69         143  
  69         3289  
4 69     69   361 use warnings;
  69         141  
  69         3865  
5 69     69   1111 use 5.018;
  69         259  
6              
7             our $VERSION = '0.001';
8              
9 69     69   409 use parent 'Async::Redis::Error';
  69         140  
  69         398  
10              
11 1     1 1 374 sub data { shift->{data} }
12              
13             1;
14              
15             __END__