mirror of
https://github.com/vlang/v.git
synced 2025-08-04 02:07:28 -04:00
21 lines
330 B
V
21 lines
330 B
V
import json
|
|
|
|
struct Foo {
|
|
name string
|
|
num ?int
|
|
}
|
|
|
|
fn test_json_encode_struct_with_option_field() {
|
|
f1 := Foo{
|
|
name: 'hello'
|
|
}
|
|
ret1 := json.encode(f1)
|
|
println(ret1)
|
|
assert ret1 == '{"name":"hello","num":null}'
|
|
|
|
f2 := Foo{'hello', 22}
|
|
ret2 := json.encode(f2)
|
|
println(ret2)
|
|
assert ret2 == '{"name":"hello","num":22}'
|
|
}
|