1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
use strict;
use warnings;
use Test::More tests => 4;
BEGIN { $ENV{PERL_JSON_BACKEND} ||= "JSON::backportPP"; }
use JSON;
my $json = JSON->new->allow_nonref(1);
my @vs = $json->incr_parse('"a\"bc');
ok( not scalar(@vs) );
@vs = $json->incr_parse('"');
is( $vs[0], "a\"bc" );
$json = JSON->new->allow_nonref(0);
@vs = $json->incr_parse('"a\"bc');
ok( not scalar(@vs) );
@vs = eval { $json->incr_parse('"') };
ok($@ =~ qr/JSON text must be an object or array/);
|