File Coverage

blib/lib/URI/cockroach.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 3 33.3
total 14 16 87.5


line stmt bran cond sub pod time code
1             package URI::cockroach;
2 2     2   3108 use base 'URI::_db';
  2         5  
  2         476  
3             our $VERSION = '0.21';
4              
5 42     42 1 18869 sub default_port { 26257 }
6 5     5 0 15 sub dbi_driver { 'Pg' }
7 40     40 0 20091 sub canonical_engine { 'cockroach' }
8              
9             sub _dbi_param_map {
10 15     15   68 my $self = shift;
11             return (
12 15         50 [ host => scalar $self->host ],
13             [ port => scalar $self->port ], # Always pass the port
14             [ dbname => scalar $self->dbname ],
15             );
16             }