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   2855 use strict;
  5         9  
  5         154  
3 5     5   21 use warnings;
  5         8  
  5         123  
4 5     5   25 use utf8;
  5         8  
  5         29  
5             use Class::Accessor::Lite (
6 5         67 new => 1
7 5     5   1336 );
  5         1072  
8 1     1 0 1786 sub run { die '`run` is abstract method' }
9              
10             1;
11              
12             __END__