hatmill/attribute/accesskey_test.go

13 lines
250 B
Go
Raw Normal View History

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