File Coverage

blib/lib/Test/Mock/Geoffrey/DBI.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Test::Mock::Geoffrey::DBI;
2              
3 1     1   154957 use utf8;
  1         374  
  1         9  
4 1     1   80 use 5.016;
  1         5  
5 1     1   6 use strict;
  1         3  
  1         22  
6 1     1   5 use warnings;
  1         4  
  1         146  
7              
8             $Test::Mock::Geoffrey::DBI::VERSION = '0.000206';
9              
10 1     1 1 12 sub new { return bless {}, shift; }
11              
12             sub selectall_arrayref {
13 2     2 1 3 my ($self) = shift;
14 2         10 return shift;
15             }
16              
17              
18             1; # End of Test::Mock::Geoffrey::DBI
19              
20             __END__