mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 05:25:04 +00:00
Merge branch '1.2'
This commit is contained in:
commit
8b2b12e05f
1 changed files with 2 additions and 0 deletions
|
@ -20,11 +20,13 @@ int main()
|
|||
result = json_dumps(json, 0);
|
||||
if(!result || strcmp(result, "{}"))
|
||||
fail("json_dumps failed");
|
||||
free(result);
|
||||
|
||||
json_object_set_new(json, "foo", json_integer(5));
|
||||
result = json_dumps(json, 0);
|
||||
if(!result || strcmp(result, "{\"foo\": 5}"))
|
||||
fail("json_dumps failed");
|
||||
free(result);
|
||||
|
||||
json_decref(json);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue