(t *testing.T)
| 89 | } |
| 90 | |
| 91 | func TestNormalizeEvent_ShiftDigit(t *testing.T) { |
| 92 | ev := tcell.NewEventKey(tcell.KeyRune, '#', tcell.ModShift) |
| 93 | key, r, mod := NormalizeEvent(ev) |
| 94 | assert.Equal(t, tcell.KeyRune, key) |
| 95 | assert.Equal(t, '3', r) |
| 96 | assert.Equal(t, tcell.ModShift, mod) |
| 97 | } |
nothing calls this directly
no test coverage detected