File Coverage

blib/lib/Test/MockDBI/Base.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Test::MockDBI::Base;
2              
3 50     50   297 use warnings;
  50         89  
  50         1956  
4 50     50   247 use strict;
  50         94  
  50         3809  
5              
6 19     19   102 sub _dbi_errstr{ return shift->{errstr}; }
7 19     19   8650 sub _dbi_err{ return shift->{err}; }
8              
9             1;