File Coverage

blib/lib/Catmandu/Fix/Condition/is_null.pm
Criterion Covered Total %
statement 14 14 100.0
branch 2 2 100.0
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             package Catmandu::Fix::Condition::is_null;
2              
3 1     1   927 use Catmandu::Sane;
  1         4  
  1         9  
4              
5             our $VERSION = '1.2020';
6              
7 1     1   6 use Moo;
  1         2  
  1         7  
8 1     1   389 use namespace::clean;
  1         2  
  1         19  
9 1     1   352 use Catmandu::Fix::Has;
  1         2  
  1         7  
10              
11             has path => (fix_arg => 1);
12              
13             with 'Catmandu::Fix::Condition::Builder::Simple';
14              
15             sub _build_value_tester {
16             sub {
17 3 100   3   80 defined($_[0]) ? 0 : 1;
18 1     1   16 };
19             }
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =head1 NAME
28              
29             Catmandu::Fix::Condition::is_null - only execute fixes if all path values are null
30              
31             =head1 SYNOPSIS
32              
33             if is_null(data.*)
34             ...
35             end
36              
37             =head1 SEE ALSO
38              
39             L<Catmandu::Fix>
40              
41             =cut