Test magic_run_completer, should match one alternative
(self)
| 112 | |
| 113 | @onlyif_unicode_paths |
| 114 | def test_2(self): |
| 115 | """Test magic_run_completer, should match one alternative""" |
| 116 | event = MockEvent("%run aa") |
| 117 | mockself = None |
| 118 | match = set(magic_run_completer(mockself, event)) |
| 119 | self.assertEqual(match, {"aaø.py"}) |
| 120 | |
| 121 | @onlyif_unicode_paths |
| 122 | def test_3(self): |
nothing calls this directly
no test coverage detected