File Coverage

lib/Spreadsheet/Engine/Function/ISNONTEXT.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::ISNONTEXT;
2              
3 28     28   156 use strict;
  28         59  
  28         1038  
4 28     28   154 use warnings;
  28         77  
  28         768  
5              
6 28     28   163 use base 'Spreadsheet::Engine::Fn::logical';
  28         56  
  28         5064  
7              
8 51     51 1 160 sub calculate { not shift->next_operand->is_txt }
9              
10             1;
11              
12             __END__