24 lines
342 B
Go
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)
|
|
}
|
|
}
|