HEX
Server: Apache
System: Linux cpamg06.likuid.com 4.18.0-553.120.1.el8_10.x86_64 #1 SMP Mon Apr 20 18:04:27 EDT 2026 x86_64
User: alainroulotte (1576)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/.cpanm/latest-build/JSON-4.10/t/116_incr_parse_fixed.t
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/);