File Coverage

lib/Spreadsheet/Engine/Function/EXP.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Spreadsheet::Engine::Function::EXP;
2              
3 28     28   151 use strict;
  28         98  
  28         1108  
4 28     28   148 use warnings;
  28         64  
  28         791  
5              
6 28     28   154 use base 'Spreadsheet::Engine::Fn::math';
  28         66  
  28         4036  
7              
8             sub calculate {
9 293     293 1 8852 my ($self, $value) = @_;
10 293         6961 return exp $value;
11             }
12              
13             1;
14              
15             __END__