File Coverage

blib/lib/Event/ExecFlow.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition 1 2 50.0
subroutine 1 1 100.0
pod n/a
total 12 13 92.3


line stmt bran cond sub pod time code
1             package Event::ExecFlow;
2              
3             $VERSION = "0.64";
4              
5             sub import {
6 2     2   17 my $class = shift;
7 2         4 my ($domain) = @_;
8              
9 2   50     14 $domain ||= "event.execflow";
10              
11 2         4 $Event::ExecFlow::locale_textdomain = $domain;
12              
13 2         917 require Event::ExecFlow::Frontend;
14 2         900 require Event::ExecFlow::Callbacks;
15 2         1041 require Event::ExecFlow::Job::Command;
16 2         3109 require Event::ExecFlow::Job::Group;
17 2         12563 require Event::ExecFlow::Job::Code;
18              
19 2         33 1;
20             }
21              
22              
23             $Event::ExecFlow::DEBUG = 0;
24              
25             1;
26              
27             __END__