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   186 use warnings;
  50         749  
  50         2732  
4 50     50   166 use strict;
  50         47  
  50         2397  
5              
6 19     19   79 sub _dbi_errstr{ return shift->{errstr}; }
7 19     19   4509 sub _dbi_err{ return shift->{err}; }
8              
9             1;