package kraftakt import ( "html/template" "testing" ) func TestTemplates(t *testing.T) { if _, err := template.ParseGlob("templates/*.html"); err != nil { t.Errorf(`template.ParseGlob("templates/*.html") = %v`, err) } }