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 69     69   852 use strict;
  69         152  
  69         3481  
4 69     69   477 use warnings;
  69         219  
  69         3704  
5 69     69   1121 use 5.018;
  69         244  
6              
7             our $VERSION = '0.001';
8              
9 69     69   410 use parent 'Async::Redis::Error';
  69         147  
  69         413  
10              
11 1     1 1 370 sub command { shift->{command} }
12 1     1 1 5 sub timeout { shift->{timeout} }
13 2     2 1 11 sub maybe_executed { shift->{maybe_executed} }
14              
15             1;
16              
17             __END__