]> Dogcows Code - chaz/p5-CGI-Ex/blobdiff - t/9_jsondump_00_base.t
CGI::Ex 2.08
[chaz/p5-CGI-Ex] / t / 9_jsondump_00_base.t
index 29f6482f6ce98864f937aaf30e6ed33c38a06964..f3eea8674332b715395a58c81a71ebf0470fbfc1 100644 (file)
@@ -7,7 +7,7 @@
 =cut
 
 use strict;
-use Test::More tests => 52;
+use Test::More tests => 57;
 
 use_ok('CGI::Ex::JSONDump');
 
@@ -80,14 +80,19 @@ test_dump(['a' => 1], "[\"a\",1]", {pretty => 0, array_nl => "\n"});
 
 
 test_dump(1, "1");
+test_dump(0, "0");
 test_dump('1.0', '"1.0"');
 test_dump('123456789012345', '"123456789012345"');
+test_dump('0.1', '0.1');
+test_dump('.1', '".1"');
+test_dump('00.1', '"00.1"');
 test_dump('a', '"a"');
 test_dump("\n", '"\\n"');
 test_dump("\\", '"\\\\"');
 test_dump('<script>', '"<scrip"+"t>"');
 test_dump('<script>', "'<scrip'+'t>'", {single_quote => 1});
 test_dump('<html>', '"<htm"+"l>"');
+test_dump('<html>', '"<html>"', {no_tag_splitting => 1});
 test_dump('<!--', '"<!-"+"-"');
 test_dump('-->', '"--"+">"');
 test_dump('---', '"---"');
This page took 0.017439 seconds and 4 git commands to generate.