File Coverage

lib/Spreadsheet/Engine/Function/ISBLANK.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::ISBLANK;
2              
3 28     28   156 use strict;
  28         61  
  28         917  
4 28     28   153 use warnings;
  28         54  
  28         731  
5              
6 28     28   147 use base 'Spreadsheet::Engine::Fn::logical';
  28         56  
  28         3887  
7              
8 122     122 1 357 sub calculate { shift->next_operand->is_blank }
9              
10             1;
11              
12             __END__