File Coverage

blib/lib/DBIx/DataModel/Carp.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 DBIx::DataModel::Carp;
2 23     23   200 use strict;
  23         47  
  23         1024  
3 23     23   137 use warnings;
  23         42  
  23         1516  
4 23     23   13950 use Carp::Object -reexport => qw/carp croak/;
  23         305485  
  23         211  
5              
6             our %CARP_OBJECT_CONSTRUCTOR = (clan => qw[^(DBIx::DataModel::|SQL::Abstract)]);
7              
8             1;
9              
10             __END__