File Coverage

lib/Spreadsheet/Engine/Function/ISNUMBER.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Spreadsheet::Engine::Function::ISNUMBER;
2              
3 28     28   153 use strict;
  28         62  
  28         896  
4 28     28   145 use warnings;
  28         62  
  28         743  
5              
6 28     28   154 use base 'Spreadsheet::Engine::Fn::logical';
  28         63  
  28         3833  
7              
8 43     43 1 163 sub calculate { shift->next_operand->is_num }
9              
10             1;
11              
12             __END__