File Coverage

blib/lib/AnyPAN/RetryPolicy/NoRetry.pm
Criterion Covered Total %
statement 10 11 90.9
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 2 0.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package AnyPAN::RetryPolicy::NoRetry;
2 1     1   8 use strict;
  1         2  
  1         30  
3 1     1   5 use warnings;
  1         2  
  1         35  
4              
5 1     1   6 use parent qw/AnyPAN::RetryPolicy/;
  1         8  
  1         13  
6              
7             my $_INSTANCE = __PACKAGE__->new();
8 1     1 0 2 sub instance { $_INSTANCE }
9              
10 0     0 0   sub apply { $_[1] }
11              
12             1;
13             __END__