File Coverage

lib/Spreadsheet/Engine/Function/NA.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Spreadsheet::Engine::Function::NA;
2              
3 28     28   149 use strict;
  28         66  
  28         1031  
4 28     28   144 use warnings;
  28         57  
  28         810  
5              
6 28     28   141 use base 'Spreadsheet::Engine::Fn::base';
  28         1112  
  28         3404  
7              
8 202     202 1 512 sub argument_count { 0 }
9              
10 202     202 1 1139 sub result { Spreadsheet::Engine::Error->na }
11              
12             1;
13              
14             __END__