File Coverage

blib/lib/Catmandu/Fix/Condition/is_number.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             package Catmandu::Fix::Condition::is_number;
2              
3 1     1   776 use Catmandu::Sane;
  1         3  
  1         6  
4              
5             our $VERSION = '1.2020';
6              
7 1     1   7 use Moo;
  1         2  
  1         7  
8 1     1   372 use Catmandu::Util qw(is_number);
  1         9  
  1         51  
9 1     1   6 use namespace::clean;
  1         2  
  1         6  
10 1     1   367 use Catmandu::Fix::Has;
  1         3  
  1         6  
11              
12             has path => (fix_arg => 1);
13              
14             with 'Catmandu::Fix::Condition::Builder::Simple';
15              
16             sub _build_value_tester {
17 1     1   13 \&is_number;
18             }
19              
20             1;
21              
22             __END__
23              
24             =pod
25              
26             =head1 NAME
27              
28             Catmandu::Fix::Condition::is_string - only execute fixes if all path values are numbers
29              
30             =head1 SYNOPSIS
31              
32             if is_number(data.*)
33             ...
34             end
35              
36             =head1 SEE ALSO
37              
38             L<Catmandu::Fix>
39              
40             =cut