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 39     39   273 use strict;
  39         82  
  39         1156  
4 39     39   199 use warnings;
  39         84  
  39         2449  
5              
6             our @ISA = qw(DBI::db);
7              
8 5     5 0 999 sub disconnect { 1 }
9              
10             1;