Test magic_run_completer, should match two alternatives
(self)
| 104 | |
| 105 | @onlyif_unicode_paths |
| 106 | def test_1(self): |
| 107 | """Test magic_run_completer, should match two alternatives""" |
| 108 | event = MockEvent("%run a") |
| 109 | mockself = None |
| 110 | match = set(magic_run_completer(mockself, event)) |
| 111 | self.assertEqual(match, {"a.py", "aaø.py"}) |
| 112 | |
| 113 | @onlyif_unicode_paths |
| 114 | def test_2(self): |
nothing calls this directly
no test coverage detected