File Coverage

lib/Spreadsheet/Engine/Function/ISNA.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::ISNA;
2              
3 28     28   151 use strict;
  28         60  
  28         943  
4 28     28   152 use warnings;
  28         89  
  28         789  
5              
6 28     28   157 use base 'Spreadsheet::Engine::Fn::logical';
  28         56  
  28         4647  
7              
8 174     174 1 560 sub calculate { shift->next_operand->is_na }
9              
10             1;
11              
12             __END__