learnlytics-go/templ/runtime/builder_test.go
2025-03-20 12:35:13 +01:00

12 lines
201 B
Go

package runtime
import "testing"
func TestGetBuilder(t *testing.T) {
sb := GetBuilder()
sb.WriteString("test")
if sb.String() != "test" {
t.Errorf("expected \"test\", got %q", sb.String())
}
}