Test magic_run_completer with unterminated "
(self)
| 60 | self.assertEqual(match, {"aao.py"}) |
| 61 | |
| 62 | def test_3(self): |
| 63 | """Test magic_run_completer with unterminated " """ |
| 64 | event = MockEvent('%run "a') |
| 65 | mockself = None |
| 66 | match = set(magic_run_completer(mockself, event)) |
| 67 | self.assertEqual(match, {"a.py", "aao.py", "adir/"}) |
| 68 | |
| 69 | def test_completion_more_args(self): |
| 70 | event = MockEvent("%run a.py ") |
nothing calls this directly
no test coverage detected