(self)
| 86 | self.assertEqual(result, {b"a": "action"}) |
| 87 | |
| 88 | def test_nested_keymap(self): |
| 89 | keymap = {b"a": {b"b": "action"}} |
| 90 | result = compile_keymap(keymap) |
| 91 | self.assertEqual(result, {b"a": {b"b": "action"}}) |
| 92 | |
| 93 | def test_empty_value(self): |
| 94 | keymap = {b"a": {b"": "action"}} |
nothing calls this directly
no test coverage detected