(self)
| 68 | self.assertIn(expected_err, str(e.exception)) |
| 69 | |
| 70 | def test_index_errors(self): |
| 71 | test_cases = ["\\", "\\C", "\\C-\\C"] |
| 72 | for test_keys in test_cases: |
| 73 | with self.assertRaises(IndexError): |
| 74 | parse_keys(test_keys) |
| 75 | |
| 76 | |
| 77 | class TestCompileKeymap(unittest.TestCase): |
nothing calls this directly
no test coverage detected