v2 / vlib / v / tests / tmpl_with_double_quotes_test.v
8 lines · 7 sloc · 141 bytes · 232560dcac7e43b8db5f9168d785d118e7d08c43
Raw
1fn test_tmpl_with_single_quotes() {
2 a := 'foo'
3 b := 'bar'
4 result := $tmpl('tmpl/include.txt')
5
6 assert result.trim_space() == 'foo
7bar'
8}
9