File Coverage

blib/lib/App/RunCron/Reporter/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 App::RunCron::Reporter::None;
2 3     3   1471 use strict;
  3         5  
  3         135  
3 3     3   17 use warnings;
  3         3  
  3         108  
4 3     3   27 use utf8;
  3         3  
  3         32  
5              
6 3     3   82 use parent 'App::RunCron::Reporter';
  3         4  
  3         27  
7              
8 5     5 0 57 sub run {
9             # do nothing
10             }
11              
12             1;