File Coverage

blib/lib/Event/ExecFlow/Scheduler.pm
Criterion Covered Total %
statement 4 6 66.6
branch n/a
condition n/a
subroutine 2 4 50.0
pod 0 3 0.0
total 6 13 46.1


line stmt bran cond sub pod time code
1             package Event::ExecFlow::Scheduler;
2              
3 1     1   7 use strict;
  1         2  
  1         94  
4              
5 46     46 0 211 sub is_exclusive { 0 }
6              
7 0     0 0   sub schedule_job { die ref(shift)." missing schedule_job() implementation" }
8 0     0 0   sub job_finished { die ref(shift)." missing job_finished() implementation" }
9              
10             1;
11              
12             __END__