1# copied over from JSON::PC and modified to use JSON::XS
2
3use Test::More;
4use strict;
5BEGIN { plan tests => 1 };
6use JSON::XS;
7#########################
8
9my ($js,$obj);
10my $pc = JSON::XS->new->canonical(1);
11
12$obj = {a=>1, b=>2, c=>3, d=>4, e=>5, f=>6, g=>7, h=>8, i=>9};
13
14$js = $pc->encode($obj);
15is($js, q|{"a":1,"b":2,"c":3,"d":4,"e":5,"f":6,"g":7,"h":8,"i":9}|);
16
17