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