File Coverage

blib/lib/Database/Async/Backoff/None.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package Database::Async::Backoff::None;
2              
3 2     2   17 use strict;
  2         3  
  2         62  
4 2     2   11 use warnings;
  2         4  
  2         87  
5              
6             our $VERSION = '0.017'; # VERSION
7              
8 2     2   10 use parent qw(Database::Async::Backoff);
  2         7  
  2         10  
9              
10 2     2   113 use mro qw(c3);
  2         4  
  2         9  
11              
12             Database::Async::Backoff->register(
13             none => __PACKAGE__
14             );
15              
16 1     1 0 2 sub next { 0 }
17              
18             1;