cuelang.org/go@v0.10.1/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"