File Coverage

blib/lib/Catmandu/Fix/stat_mode.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             package Catmandu::Fix::stat_mode;
2              
3 1     1   15824 use Catmandu::Sane;
  1         122919  
  1         6  
4 1     1   202 use Moo;
  1         1  
  1         4  
5 1     1   631 use Catmandu::Fix::Has;
  1         615  
  1         5  
6 1     1   804 use Statistics::Basic;
  1         12394  
  1         3  
7              
8             has path => (fix_arg => 1);
9              
10             with 'Catmandu::Fix::SimpleGetValue';
11              
12             sub emit_value {
13 2     2 0 11093 my ($self, $var) = @_;
14 2         6 "${var} = '' . (Statistics::Basic::mode(${var})) if is_array_ref(${var});";
15             }
16              
17             =head1 NAME
18              
19             Catmandu::Fix::stat_mode - calculate the mode of an array
20              
21             =head1 SYNOPSIS
22              
23             # Calculate the mode of foo. E.g. foo => [1,2,3,3,3,4]
24             stat_mode(foo) # foo => '3'
25              
26             =head1 SEE ALSO
27              
28             L<Catmandu::Fix>
29              
30             =cut
31              
32             1;