File Coverage

lib/Spreadsheet/Engine/Function/MINUTE.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::MINUTE;
2              
3 28     28   150 use strict;
  28         104  
  28         877  
4 28     28   146 use warnings;
  28         60  
  28         720  
5              
6 28     28   152 use base 'Spreadsheet::Engine::Fn::hms';
  28         55  
  28         6533  
7              
8             sub _calculate {
9 101     101   227 my ($self, $H, $M, $S) = @_;
10 101         2314 return $M;
11             }
12              
13             1;
14              
15             __END__