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