File Coverage

blib/lib/URI/pg.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 3 33.3
total 11 13 84.6


line stmt bran cond sub pod time code
1             package URI::pg;
2 3     3   895 use base 'URI::_db';
  3         6  
  3         437  
3             our $VERSION = '0.20';
4              
5 126     126 1 52855 sub default_port { 5432 }
6 11     11 0 29 sub dbi_driver { 'Pg' }
7 148     148 0 57462 sub canonical_engine { 'pg' }
8              
9             1;