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 76     76   689 use strict;
  76         122  
  76         2419  
4 76     76   287 use warnings;
  76         118  
  76         2944  
5 76     76   923 use 5.018;
  76         187  
6              
7             our $VERSION = '0.001';
8              
9 76     76   315 use parent 'Async::Redis::Error';
  76         103  
  76         341  
10              
11 1     1 1 377 sub command { shift->{command} }
12 1     1 1 3 sub timeout { shift->{timeout} }
13 2     2 1 8 sub maybe_executed { shift->{maybe_executed} }
14              
15             1;
16              
17             __END__