(self)
| 348 | self.assertEqual(matches, ["\\beta"]) |
| 349 | |
| 350 | def test_back_unicode_completion(self): |
| 351 | ip = get_ipython() |
| 352 | |
| 353 | name, matches = ip.complete("\\Ⅴ") |
| 354 | self.assertEqual(matches, ["\\ROMAN NUMERAL FIVE"]) |
| 355 | |
| 356 | def test_forward_unicode_completion(self): |
| 357 | ip = get_ipython() |
nothing calls this directly
no test coverage detected