—package
Test2::Harness::Util::File::JSON;
use
strict;
use
warnings;
our
$VERSION
=
'1.000090'
;
sub
decode {
shift
; decode_json(
@_
) }
sub
encode {
shift
->pretty ? encode_pretty_json(
@_
) : encode_json(
@_
) }
sub
reset
{ croak
"line reading is disabled for json files"
}
sub
read_line { croak
"line reading is disabled for json files"
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test2::Harness::Util::File::JSON - Utility class for a JSON file.
=head1 DESCRIPTION
Subclass of L<Test2::Harness::Util::File> which automatically handles
encoding/decoding JSON data.
=head1 SYNOPSIS
require Test2::Harness::Util::File::JSON;
my $file = Test2::Harness::Util::File::JSON->new(name => '/path/to/file.json');
$hash = $file->read;
# or
$$file->write({...});
=head1 SEE ALSO
See the base class L<Test2::Harness::Util::File> for methods.
=head1 SOURCE
The source code repository for Test2-Harness can be found at
=head1 MAINTAINERS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 AUTHORS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 COPYRIGHT
Copyright 2020 Chad Granum E<lt>exodist7@gmail.comE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut