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   30123 use Catmandu::Sane;
  1         207600  
  1         10  
4 1     1   328 use Moo;
  1         3  
  1         5  
5 1     1   1155 use Catmandu::Fix::Has;
  1         1169  
  1         8  
6 1     1   1411 use Statistics::Basic;
  1         19116  
  1         6  
7              
8             has path => (fix_arg => 1);
9              
10             with 'Catmandu::Fix::SimpleGetValue';
11              
12             sub emit_value {
13 2     2 0 31081 my ($self, $var) = @_;
14 2         15 "${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;