File Coverage

blib/lib/Catmandu/Fix/to_json.pm
Criterion Covered Total %
statement 22 22 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 30 30 100.0


line stmt bran cond sub pod time code
1              
2             use Catmandu::Sane;
3 1     1   102071  
  1         3  
  1         7  
4             our $VERSION = '1.2019';
5              
6             use Cpanel::JSON::XS ();
7 1     1   7 use Catmandu::Util::Path qw(as_path);
  1         2  
  1         19  
8 1     1   458 use Moo;
  1         2  
  1         45  
9 1     1   7 use namespace::clean;
  1         2  
  1         6  
10 1     1   340 use Catmandu::Fix::Has;
  1         2  
  1         4  
11 1     1   637  
  1         2  
  1         5  
12             with 'Catmandu::Fix::Builder';
13              
14             has path => (fix_arg => 1);
15              
16             my ($self) = @_;
17             my $json = Cpanel::JSON::XS->new->utf8(0)->pretty(0)->allow_nonref(1);
18 2     2   16 as_path($self->path)->updater(
19 2         16 if => [
20             [qw(maybe_value array_ref hash_ref)] => sub {
21             $json->encode($_[0]);
22             }
23 3     3   56 ]
24             );
25 2         35 }
26              
27             1;
28              
29              
30             =pod
31              
32             =head1 NAME
33              
34             Catmandu::Fix::to_json - convert the value of a field to json
35              
36             =head1 SYNOPSIS
37              
38             to_json(my.field)
39              
40             =head1 SEE ALSO
41              
42             L<Catmandu::Fix>
43              
44             =cut
45