(self)
| 354 | self.assertEqual(matches, ["\\ROMAN NUMERAL FIVE"]) |
| 355 | |
| 356 | def test_forward_unicode_completion(self): |
| 357 | ip = get_ipython() |
| 358 | |
| 359 | name, matches = ip.complete("\\ROMAN NUMERAL FIVE") |
| 360 | self.assertEqual(matches, ["Ⅴ"]) # This is not a V |
| 361 | self.assertEqual(matches, ["\u2164"]) # same as above but explicit. |
| 362 | |
| 363 | def test_delim_setting(self): |
| 364 | sp = completer.CompletionSplitter() |
nothing calls this directly
no test coverage detected