File Coverage

blib/lib/HeliosX/Logger/HiRes/LogEntry.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package HeliosX::Logger::HiRes::LogEntry;
2              
3 1     1   25 use 5.008;
  1         3  
4 1     1   5 use strict;
  1         1  
  1         21  
5 1     1   6 use warnings;
  1         1  
  1         45  
6 1     1   7 use base 'Data::ObjectDriver::BaseObject';
  1         6  
  1         136  
7              
8             our $VERSION = '1.00';
9              
10             __PACKAGE__->install_properties({
11             columns => [
12             'logid',
13             'log_time',
14             'host',
15             'pid',
16             'jobid',
17             'jobtypeid',
18             'service',
19             'priority',
20             'message',
21             ],
22             datasource => 'helios_log_entry_tb',
23             primary_key => 'logid',
24             });
25              
26             1;
27             __END__