File Coverage

blib/lib/App/RunCron/Reporter.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;
2 5     5   2142 use strict;
  5         7  
  5         169  
3 5     5   25 use warnings;
  5         7  
  5         117  
4 5     5   19 use utf8;
  5         5  
  5         21  
5             use Class::Accessor::Lite (
6 5         42 new => 1
7 5     5   583 );
  5         959  
8 1     1 0 772 sub run { die '`run` is abstract method' }
9              
10             1;
11              
12             __END__