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   279 use strict;
  40         87  
  40         1203  
4 40     40   217 use warnings;
  40         83  
  40         2755  
5              
6             our @ISA = qw(DBI::db);
7              
8 5     5 0 1026 sub disconnect { 1 }
9              
10             1;