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 6     6   205196 use strict;
  6         14  
  6         313  
4 6     6   69 use warnings;
  6         13  
  6         598  
5              
6             our $VERSION = '0.019'; # VERSION
7              
8 6     6   51 use parent qw(Database::Async::Backoff);
  6         11  
  6         50  
9              
10 6     6   1121 use mro qw(c3);
  6         910  
  6         39  
11              
12             Database::Async::Backoff->register(
13             none => __PACKAGE__
14             );
15              
16 1     1 0 3 sub next { 0 }
17              
18             1;