hatmill/attribute/accesskey_test.go

14 lines
252 B
Go
Raw Permalink Normal View History

2019-08-31 18:51:48 +00:00
package attribute_test
import (
"testing"
"git.codemonkeysoftware.net/b/hatmill/attribute"
2019-08-31 18:51:48 +00:00
)
2019-08-31 21:34:33 +00:00
func TestAccessKeyCodeString(t *testing.T) {
2019-08-31 18:51:48 +00:00
actual := attribute.AccessKeyCode('a').String()
expected := "a"
expectEqualStrings(t, actual, expected)
}