%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /root/.cpanm/work/1590825950.14464/JSON-XS-4.02/t/
Upload File :
Create Path :
Current File : //root/.cpanm/work/1590825950.14464/JSON-XS-4.02/t/16_tied.t

BEGIN { $| = 1; print "1..2\n"; }

use JSON::XS;
use Tie::Hash;
use Tie::Array;

our $test;
sub ok($;$) {
   print $_[0] ? "" : "not ", "ok ", ++$test, "\n";
}

my $js = JSON::XS->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]');

Zerion Mini Shell 1.0