25 lines
384 B
Perl
25 lines
384 B
Perl
# copied over from JSON::XS and modified to use JSON::PP
|
|
|
|
use strict;
|
|
use Test::More;
|
|
BEGIN { plan tests => 2 };
|
|
|
|
BEGIN { $ENV{PERL_JSON_BACKEND} = 0; }
|
|
|
|
use JSON::PP;
|
|
use Tie::Hash;
|
|
use Tie::Array;
|
|
|
|
|
|
my $js = JSON::PP->new;
|
|
|
|
tie my %h, 'Tie::StdHash';
|
|
%h = (a => 1);
|
|
|
|
ok ($js->encode (\%h) eq '{"a":1}');
|
|
|
|
tie my @a, 'Tie::StdArray';
|
|
@a = (1, 2);
|
|
|
|
ok ($js->encode (\@a) eq '[1,2]');
|