learnlytics-go/templ/generator/test-constant-attribute-escaping/render_test.go
2025-03-20 12:35:13 +01:00

24 lines
342 B
Go

package testconstantattributeescaping
import (
_ "embed"
"testing"
"github.com/a-h/templ/generator/htmldiff"
)
//go:embed expected.html
var expected string
func Test(t *testing.T) {
component := BasicTemplate()
diff, err := htmldiff.Diff(component, expected)
if err != nil {
t.Fatal(err)
}
if diff != "" {
t.Error(diff)
}
}