v4 / vlib / v / tests / options / option_map_struct_field_init_test.v
14 lines · 13 sloc · 224 bytes · 3c1d26ae7315d43f4b18ed8f0cdfff19f99827bc
Raw
1struct Config {
2 values ?map[string]int
3}
4
5fn test_option_map_struct_field_init_with_literal() {
6 cfg := Config{
7 values: {
8 'one': 1
9 'two': 2
10 }
11 }
12 assert cfg.values?['one']! == 1
13 assert cfg.values?['two']! == 2
14}
15