Add a test for attr.String (#12)
Markus Wüstenberg markus@maragu.dk
Mon, 21 Sep 2020 16:07:39 +0200
1 files changed, 9 insertions(+), 0 deletions(-)
jump to
M gomponents_test.go → gomponents_test.go
@@ -2,6 +2,7 @@ package gomponents_test import ( "errors" + "fmt" "strings" "testing" @@ -38,6 +39,14 @@ } }() g.Attr("name", "value", "what is this?") if !called { + t.FailNow() + } + }) + + t.Run("implements fmt.Stringer", func(t *testing.T) { + a := g.Attr("required") + s := fmt.Sprintf("%v", a) + if s != " required" { t.FailNow() } })