Test magic_run_completer, should match one alternative
(self)
| 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 |
| 60 | """ |
| 61 | event = MockEvent(u"%run aa") |
| 62 | mockself = None |
| 63 | match = set(magic_run_completer(mockself, event)) |
| 64 | self.assertEqual(match, {u"aao.py"}) |
| 65 | |
| 66 | def test_3(self): |
| 67 | """Test magic_run_completer with unterminated " """ |
nothing calls this directly
no test coverage detected