mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
9 lines
267 B
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}'
|
||
|
}
|