File Coverage

blib/lib/DBD/Mock/Pool/db.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             package DBD::Mock::Pool::db;
2              
3 40     40   276 use strict;
  40         78  
  40         1173  
4 40     40   197 use warnings;
  40         75  
  40         2473  
5              
6             our @ISA = qw(DBI::db);
7              
8 5     5 0 984 sub disconnect { 1 }
9              
10             1;