Test magic_run_completer, should match one alternative
(self)
| 53 | self.assertEqual(match, {"a.py", "aao.py", "adir/"}) |
| 54 | |
| 55 | def test_2(self): |
| 56 | """Test magic_run_completer, should match one alternative""" |
| 57 | event = MockEvent("%run aa") |
| 58 | mockself = None |
| 59 | match = set(magic_run_completer(mockself, event)) |
| 60 | self.assertEqual(match, {"aao.py"}) |
| 61 | |
| 62 | def test_3(self): |
| 63 | """Test magic_run_completer with unterminated " """ |
nothing calls this directly
no test coverage detected