File Coverage

blib/lib/XAS/Factory.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package XAS::Factory;
2              
3             our $VERSION = '0.02';
4              
5             use Badger::Factory::Class
6 1         596 debug => 0,
7             version => $VERSION,
8             item => 'module',
9             path => 'XAS::Lib XAS::Lib::Modules',
10             modules => {
11             alert => 'XAS::Lib::Modules::Alerts',
12             email => 'XAS::Lib::Modules::Email',
13             environment => 'XAS::Lib::Modules::Environment',
14             log => 'XAS::Lib::Log',
15             logger => 'XAS::Lib::Log',
16             lockmgr => 'XAS::Lib::Lockmgr',
17             pidfile => 'XAS::Lib::Pidfile',
18             spool => 'XAS::Lib::Modules::Spool',
19             spooler => 'XAS::Lib::Modules::Spool',
20             }
21 1     1   400 ;
  1         19969  
22              
23             1;
24              
25             __END__