File Coverage

blib/lib/TheSchwartz/Error.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             # $Id$
2              
3             package TheSchwartz::Error;
4 24     24   147 use strict;
  24         45  
  24         856  
5 24     24   139 use base qw( Data::ObjectDriver::BaseObject );
  24         52  
  24         2150  
6              
7             __PACKAGE__->install_properties(
8             { columns => [qw( jobid funcid message error_time )],
9             datasource => 'error',
10             }
11             );
12              
13             1;