2019-08-31 18:51:48 +00:00
|
|
|
package attribute_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"gitlab.codemonkeysoftware.net/b/hatmill/attribute"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
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)
|
|
|
|
}
|