File Coverage

lib/Spreadsheet/Engine/Function/TRUE.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::TRUE;
2              
3 28     28   151 use strict;
  28         58  
  28         926  
4 28     28   148 use warnings;
  28         60  
  28         742  
5              
6 28     28   169 use base 'Spreadsheet::Engine::Fn::logical';
  28         58  
  28         4091  
7              
8 1284     1284 1 3075 sub argument_count { 0 }
9              
10 1284     1284 1 3717 sub calculate { 1 }
11              
12             1;
13              
14             __END__