1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/json/cjson/cjson_test.v

9 lines
267 B
V

import json.cjson
fn test_object_with_null() {
mut root := cjson.create_object()
root.add_item_to_object('name', cjson.create_string('Andre'))
root.add_item_to_object('age', cjson.create_null())
assert root.print_unformatted() == '{"name":"Andre","age":null}'
}