Test magic_run_completer, should match two alternatives
(self)
| 46 | shutil.rmtree(self.BASETESTDIR) |
| 47 | |
| 48 | def test_1(self): |
| 49 | """Test magic_run_completer, should match two alternatives""" |
| 50 | event = MockEvent("%run a") |
| 51 | mockself = None |
| 52 | match = set(magic_run_completer(mockself, event)) |
| 53 | self.assertEqual(match, {"a.py", "aao.py", "adir/"}) |
| 54 | |
| 55 | def test_2(self): |
| 56 | """Test magic_run_completer, should match one alternative""" |
nothing calls this directly
no test coverage detected