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   7 use utf8;
  1         2  
  1         6  
4 1     1   83 use 5.016;
  1         4  
5 1     1   5 use strict;
  1         2  
  1         38  
6 1     1   5 use warnings;
  1         2  
  1         48  
7              
8             $Test::Mock::Geoffrey::Converter::SQLite::Functions::VERSION = '0.000205';
9              
10 1     1   5 use parent 'Geoffrey::Role::ConverterType';
  1         2  
  1         5  
11              
12 2     2 1 15 sub list { return [ { name => 'Function 1' }, { name => 'Function 2' }, ]; }
13              
14 1     1 1 3 sub information { my ($self) = shift; return shift; }
  1         10  
15              
16             1;