mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-08 15:33:33 +00:00
11 lines
273 B
Lua
11 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."
|
|
}
|
|
}
|
|
|
|
]]))
|