File Coverage

blib/lib/Helios/JobHistory.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Helios::JobHistory;
2              
3 1     1   861 use strict;
  1         2  
  1         29  
4 1     1   4 use warnings;
  1         1  
  1         22  
5 1     1   3 use base qw( Data::ObjectDriver::BaseObject );
  1         1  
  1         296  
6              
7             our $VERSION = '2.00';
8              
9             __PACKAGE__->install_properties({
10             columns => [qw(jobid funcid arg uniqkey insert_time
11             run_after grabbed_until priority coalesce
12             complete_time exitstatus)],
13             datasource => 'helios_job_history_tb',
14             });
15              
16              
17              
18             1;
19             __END__;