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   735 use strict;
  4         6  
  4         153  
3 4     4   18 use warnings;
  4         6  
  4         101  
4 4     4   16 use utf8;
  4         4  
  4         48  
5              
6 4     4   596 use parent 'App::RunCron::Reporter';
  4         247  
  4         28  
7              
8             sub run {
9 5     5 0 62 my ($self, $runner) = @_;
10 5         27 print STDOUT $runner->report;
11             }
12              
13             1;