File Coverage

blib/lib/DBIx/QuickDB/Driver/Percona.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 2 0.0
total 29 31 93.5


line stmt bran cond sub pod time code
1             package DBIx::QuickDB::Driver::Percona;
2 8     8   143872 use strict;
  8         11  
  8         236  
3 8     8   26 use warnings;
  8         10  
  8         458  
4              
5             our $VERSION = '0.000050';
6              
7 8     8   1743 use IPC::Cmd qw/can_run/;
  8         135804  
  8         425  
8 8     8   1298 use Capture::Tiny qw/capture/;
  8         33720  
  8         345  
9              
10 8     8   36 use parent 'DBIx::QuickDB::Driver::MySQLCom';
  8         13  
  8         44  
11 8     8   437 use DBIx::QuickDB::Util::HashBase;
  8         11  
  8         55  
12              
13 14     14 0 30 sub provider { 'Percona Server' }
14              
15 14     14 0 29 sub dbd_driver_order { my $class = shift; $class->SUPER::dbd_driver_order($ENV{QDB_PERCONA_DBD}) }
  14         70  
16              
17             1;
18              
19             __END__