File Coverage

lib/Spreadsheet/Engine/Fn/math2.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package Spreadsheet::Engine::Fn::math2;
2              
3 28     28   175 use strict;
  28         101  
  28         962  
4 28     28   149 use warnings;
  28         61  
  28         748  
5              
6 28     28   163 use base 'Spreadsheet::Engine::Fn::math';
  28         240  
  28         5058  
7              
8 1774     1774 1 6819 sub signature { 'n', 'n' }
9 866     866   3145 sub _result_type_key { 'twoargnumeric' }
10              
11             1;
12              
13             __END__