v2 / vlib / v / tests / tmpl_dot_var_test.v
11 lines · 10 sloc · 143 bytes · 311579675629e738d750a7bb8c290f3498fa8315
Raw
1fn template() string {
2 one := 1
3 two := 2
4 return $tmpl('tmpl/dot_var.txt')
5}
6
7fn test_tmpl_with_dot_var() {
8 assert template() == '.1
9.2
10'
11}
12