File Coverage

blib/lib/SQL/Wizard/Expr/Func.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition 1 2 50.0
subroutine 4 4 100.0
pod 0 1 0.0
total 17 19 89.4


line stmt bran cond sub pod time code
1             package SQL::Wizard::Expr::Func;
2              
3 14     14   70 use strict;
  14         17  
  14         429  
4 14     14   49 use warnings;
  14         16  
  14         616  
5 14     14   65 use parent 'SQL::Wizard::Expr';
  14         17  
  14         80  
6              
7             sub new {
8 34     34 0 138 my ($class, %args) = @_;
9             # args: name => 'COUNT', args => [...]
10 34   50     90 $args{args} ||= [];
11 34         162 $class->SUPER::new(%args);
12             }
13              
14             1;