hatmill/attribute/generated_test.go

20 lines
465 B
Go

package attribute_test
import (
"testing"
"gitlab.codemonkeysoftware.net/b/hatmill"
"gitlab.codemonkeysoftware.net/b/hatmill/attribute"
)
func testAttribValue(t *testing.T, attrib hatmill.Attrib, expectedValue string) {
t.Helper()
if attrib.ValueString() != expectedValue {
t.Fatalf("expected attribute value to be %#v, but got %#v", expectedValue, attrib.ValueString())
}
}
func TestBool(t *testing.T) {
testAttribValue(t, attribute.Disabled(), "")
}