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 76     76   733 use strict;
  76         117  
  76         2713  
4 76     76   302 use warnings;
  76         140  
  76         3214  
5 76     76   936 use 5.018;
  76         201  
6              
7             our $VERSION = '0.001';
8              
9 76     76   289 use parent 'Async::Redis::Error';
  76         101  
  76         352  
10              
11 1     1 1 373 sub data { shift->{data} }
12              
13             1;
14              
15             __END__