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   2641 use strict;
  3         6  
  3         147  
3 3     3   15 use warnings;
  3         5  
  3         144  
4 3     3   16 use utf8;
  3         23  
  3         41  
5              
6 3     3   85 use parent 'App::RunCron::Reporter';
  3         11  
  3         53  
7              
8 3     3 0 70 sub run {
9             # do nothing
10             }
11              
12             1;