File Coverage

lib/Spreadsheet/Engine/Function/SECOND.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Spreadsheet::Engine::Function::SECOND;
2              
3 28     28   145 use strict;
  28         59  
  28         859  
4 28     28   170 use warnings;
  28         59  
  28         689  
5              
6 28     28   140 use base 'Spreadsheet::Engine::Fn::hms';
  28         59  
  28         6868  
7              
8             sub _calculate {
9 79     79   163 my ($self, $H, $M, $S) = @_;
10 79         1906 return $S;
11             }
12              
13             1;
14              
15             __END__