mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-13 01:37:59 +00:00
12 lines
273 B
Lua
12 lines
273 B
Lua
|
-- https://www.json.org/JSON_checker/test.zip
|
||
|
-- JSON parsing sample test case: pass3.json
|
||
|
assert(pcall(DecodeJson, [[
|
||
|
{
|
||
|
"JSON Test Pattern pass3": {
|
||
|
"The outermost value": "must be an object or array.",
|
||
|
"In this test": "It is an object."
|
||
|
}
|
||
|
}
|
||
|
|
||
|
]]))
|