File Coverage

blib/lib/Query/Abstract/Driver/Base.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 17 19 89.4


line stmt bran cond sub pod time code
1             package Query::Abstract::Driver::Base;
2              
3             our $VERSION = '0.01';
4              
5 2     2   22 use v5.10;
  2         7  
  2         82  
6 2     2   10 use strict;
  2         3  
  2         60  
7 2     2   9 use warnings;
  2         3  
  2         245  
8              
9              
10             sub new {
11 2     2 0 5 my ($class, %args) = @_;
12 2         11 return bless \%args, $class;
13             }
14              
15 2     2 0 5 sub init {
16              
17             }
18              
19              
20             1;