13 lines
250 B
Go
13 lines
250 B
Go
|
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)
|
||
|
}
|