File: 10_pc_keysort.t

package info (click to toggle)
libjson-xs-perl 4.030-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 528 kB
  • sloc: perl: 525; makefile: 8
file content (16 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# copied over from JSON::PC and modified to use JSON::XS

use Test::More;
use strict;
BEGIN { plan tests => 1 };
use JSON::XS;
#########################

my ($js,$obj);
my $pc = JSON::XS->new->canonical(1);

$obj = {a=>1, b=>2, c=>3, d=>4, e=>5, f=>6, g=>7, h=>8, i=>9};

$js = $pc->encode($obj);
is($js, q|{"a":1,"b":2,"c":3,"d":4,"e":5,"f":6,"g":7,"h":8,"i":9}|);