v.parser: add a test for db46ad5
parent
db46ad5481
commit
f7a8a460f6
|
@ -0,0 +1,10 @@
|
||||||
|
import json
|
||||||
|
|
||||||
|
fn test_calling_functions_with_map_initializations_containing_arrays() {
|
||||||
|
result := json.encode(map{
|
||||||
|
// NB: []string{} should NOT be treated as []json.string{}
|
||||||
|
'users': []string{}
|
||||||
|
'groups': []string{}
|
||||||
|
})
|
||||||
|
assert result == '{"users":[],"groups":[]}'
|
||||||
|
}
|
Loading…
Reference in New Issue