(t *testing.T)
| 88 | } |
| 89 | |
| 90 | func TestNormalizeTemplate(t *testing.T) { |
| 91 | assert.Equal(t, "{{.Seq}} {{.CPU}}", normalizeTemplate("{{ .Seq }} {{ .CPU }}")) |
| 92 | } |
| 93 | |
| 94 | func TestIsTemplateBalanced(t *testing.T) { |
| 95 | ok, pos := isTemplateBalanced("{{ .Seq }} {{.CPU}}") |
nothing calls this directly
no test coverage detected