This commit is contained in:
Alexander Heldt
2025-11-16 17:45:28 +01:00
parent 417b5a2559
commit 47917452cf
4 changed files with 51 additions and 14 deletions

View File

@@ -18,9 +18,9 @@ pub fn key_from_list_test() {
TestCase([esc, csi, "C"], key.Right),
TestCase([esc, csi, "A"], key.Up),
TestCase([esc, csi, "B"], key.Down),
TestCase([esc, csi], key.Continue),
TestCase([esc], key.Continue),
TestCase([], key.Continue),
TestCase([esc, csi], key.Continue([])),
TestCase([esc], key.Continue([])),
TestCase([], key.Continue([])),
]
list.each(test_cases, fn(tc) {