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 92     92   801 use strict;
  92         133  
  92         3109  
4 92     92   326 use warnings;
  92         124  
  92         3768  
5 92     92   1129 use 5.018;
  92         250  
6              
7 92     92   358 use parent 'Async::Redis::Error';
  92         132  
  92         389  
8              
9 1     1 1 386 sub data { shift->{data} }
10              
11             1;
12              
13             __END__