Branch
Hash :
47db62ea
Author :
Thomas de Grivel
Date :
2025-09-11T22:40:42
fix json tests
require JSON
JSON
JSON.from_str("{}")
%{}
JSON.from_str("{\"a\": \"b\"}")
%{"a" => "b"}
JSON.from_str("{\"a\": 1}")
%{"a" => 1}
JSON.from_str("{\"a\": true}")
%{"a" => true}
JSON.from_str("{\"a\": false}")
%{"a" => false}
JSON.from_str("{\"a\": null}")
%{"a" => void}