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   82154 use utf8;
  1         30  
  1         5  
4 1     1   39 use 5.016;
  1         4  
5 1     1   5 use strict;
  1         2  
  1         18  
6 1     1   5 use warnings;
  1         2  
  1         101  
7              
8             $Test::Mock::Geoffrey::DBI::VERSION = '0.000204';
9              
10 1     1 1 26 sub new { return bless {}, shift; }
11              
12             sub selectall_arrayref {
13 2     2 1 4 my ($self) = shift;
14 2         21 return shift;
15             }
16              
17              
18             1; # End of Test::Mock::Geoffrey::DBI
19              
20             __END__