File Coverage

blib/lib/Catmandu/Fix/Condition/is_array.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1              
2             use Catmandu::Sane;
3 1     1   673  
  1         2  
  1         6  
4             our $VERSION = '1.2018';
5              
6             use Moo;
7 1     1   6 use Catmandu::Util qw(is_array_ref);
  1         1  
  1         7  
8 1     1   330 use namespace::clean;
  1         2  
  1         48  
9 1     1   14 use Catmandu::Fix::Has;
  1         2  
  1         5  
10 1     1   279  
  1         2  
  1         7  
11             has path => (fix_arg => 1);
12              
13             with 'Catmandu::Fix::Condition::Builder::Simple';
14              
15             \&is_array_ref;
16             }
17 1     1   11  
18             1;
19              
20              
21             =pod
22              
23             =head1 NAME
24              
25             Catmandu::Fix::Condition::is_array - only execute fixes if all path values are arrays
26              
27             =head1 SYNOPSIS
28              
29             if is_array(data.*.list)
30             ...
31             end
32              
33             =head1 SEE ALSO
34              
35             L<Catmandu::Fix>
36              
37             =cut