File Coverage

lib/Spreadsheet/Engine/Function/ISERROR.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::ISERROR;
2              
3 28     28   163 use strict;
  28         54  
  28         925  
4 28     28   158 use warnings;
  28         53  
  28         716  
5              
6 28     28   155 use base 'Spreadsheet::Engine::Fn::logical';
  28         282  
  28         3554  
7              
8 432     432 1 1690 sub calculate { shift->next_operand->is_error }
9              
10             1;
11              
12             __END__