File Coverage

blib/lib/Catmandu/Fix/uniq.pm
Criterion Covered Total %
statement 25 25 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod n/a
total 34 34 100.0


line stmt bran cond sub pod time code
1              
2             use Catmandu::Sane;
3 1     1   85064  
  1         3  
  1         6  
4             our $VERSION = '1.2018';
5              
6             use List::MoreUtils qw(uniq);
7 1     1   447 use Catmandu::Util::Path qw(as_path);
  1         7578  
  1         8  
8 1     1   1296 use Moo;
  1         2  
  1         42  
9 1     1   6 use namespace::clean;
  1         1  
  1         5  
10 1     1   299 use Catmandu::Fix::Has;
  1         2  
  1         3  
11 1     1   600  
  1         2  
  1         5  
12             with 'Catmandu::Fix::Builder';
13              
14             has path => (fix_arg => 1);
15              
16             my ($self) = @_;
17             as_path($self->path)->updater(
18 1     1   12 if_array_ref => sub {
19             no warnings 'uninitialized';
20             [List::MoreUtils::uniq(@{$_[0]})];
21 1     1   356 }
  1         2  
  1         90  
22 1     1   2 );
  1         24  
23             }
24 1         18  
25             1;
26              
27              
28             =pod
29              
30             =head1 NAME
31              
32             Catmandu::Fix::uniq - strip duplicate values from an array
33              
34             =head1 SYNOPSIS
35              
36             # {tags => ["foo", "bar", "bar", "foo"]}
37             uniq(tags)
38             # {tags => ["foo", "bar"]}
39              
40             =head1 SEE ALSO
41              
42             L<Catmandu::Fix>
43              
44             =cut