File Coverage

lib/Spreadsheet/Engine/Function/ISTEXT.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::ISTEXT;
2              
3 28     28   154 use strict;
  28         57  
  28         929  
4 28     28   154 use warnings;
  28         57  
  28         1153  
5              
6 28     28   146 use base 'Spreadsheet::Engine::Fn::logical';
  28         75  
  28         3350  
7              
8 5     5 1 25 sub calculate { shift->next_operand->is_txt }
9              
10             1;
11              
12             __END__