File Coverage

blib/lib/App/RunCron/Reporter/Stdout.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             package App::RunCron::Reporter::Stdout;
2 4     4   1305 use strict;
  4         9  
  4         194  
3 4     4   26 use warnings;
  4         7  
  4         158  
4 4     4   25 use utf8;
  4         9  
  4         47  
5              
6 4     4   995 use parent 'App::RunCron::Reporter';
  4         303  
  4         156  
7              
8             sub run {
9 4     4 0 78 my ($self, $runner) = @_;
10 4         40 print STDOUT $runner->report;
11             }
12              
13             1;