This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
new perldelta
[perl5.git] / cpan / JSON-PP / t / 014_latin1.t
1 # copied over from JSON::XS and modified to use JSON::PP
2
3 use strict;
4 use warnings;
5 use Test::More;
6 BEGIN { plan tests => 4 };
7
8 BEGIN { $ENV{PERL_JSON_BACKEND} = 0; }
9
10 use JSON::PP;
11
12 my $pp = JSON::PP->new->latin1->allow_nonref;
13
14 ok ($pp->encode ("\x{12}\x{b6}       ") eq "\"\\u0012\x{b6}       \"");
15 ok ($pp->encode ("\x{12}\x{b6}\x{abc}") eq "\"\\u0012\x{b6}\\u0abc\"");
16
17 ok ($pp->decode ("\"\\u0012\x{b6}\""       ) eq "\x{12}\x{b6}");
18 ok ($pp->decode ("\"\\u0012\x{b6}\\u0abc\"") eq "\x{12}\x{b6}\x{abc}");
19