File Coverage

blib/lib/Async/Redis/Error/Timeout.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 3 3 100.0
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Async::Redis::Error::Timeout;
2              
3 92     92   843 use strict;
  92         128  
  92         2961  
4 92     92   320 use warnings;
  92         117  
  92         3418  
5 92     92   1144 use 5.018;
  92         260  
6              
7 92     92   331 use parent 'Async::Redis::Error';
  92         141  
  92         369  
8              
9 1     1 1 406 sub command { shift->{command} }
10 1     1 1 5 sub timeout { shift->{timeout} }
11 2     2 1 8 sub maybe_executed { shift->{maybe_executed} }
12              
13             1;
14              
15             __END__