File Coverage

blib/lib/Test/Mock/Geoffrey/Converter/SQLite/Functions.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 2 2 100.0
total 26 26 100.0


line stmt bran cond sub pod time code
1             package Test::Mock::Geoffrey::Converter::SQLite::Functions;
2              
3 1     1   6 use utf8;
  1         2  
  1         5  
4 1     1   35 use 5.016;
  1         3  
5 1     1   4 use strict;
  1         2  
  1         18  
6 1     1   5 use warnings;
  1         2  
  1         39  
7              
8             $Test::Mock::Geoffrey::Converter::SQLite::Functions::VERSION = '0.000203';
9              
10 1     1   316 use parent 'Geoffrey::Role::ConverterType';
  1         2  
  1         5  
11              
12 2     2 1 13 sub list { return [ { name => 'Function 1' }, { name => 'Function 2' }, ]; }
13              
14 1     1 1 3 sub information { my ($self) = shift; return shift; }
  1         8  
15              
16             1;