github.com/joomcode/cue@v0.4.4-0.20221111115225-539fe3512047/pkg/text/template/testdata/gen.txtar (about) 1 # generated from the original tests. 2 # Henceforth it may be nicer to group tests into separate files. 3 -- in.cue -- 4 import "text/template" 5 6 t1: template.Execute("{{.}}-{{.}}", "foo") 7 -- out/template -- 8 t1: "foo-foo" 9