Test magic_run_completer with unterminated "
(self)
| 120 | |
| 121 | @onlyif_unicode_paths |
| 122 | def test_3(self): |
| 123 | """Test magic_run_completer with unterminated " """ |
| 124 | event = MockEvent('%run "a') |
| 125 | mockself = None |
| 126 | match = set(magic_run_completer(mockself, event)) |
| 127 | self.assertEqual(match, {"a.py", "aaø.py"}) |
| 128 | |
| 129 | |
| 130 | # module_completer: |
nothing calls this directly
no test coverage detected