(self)
| 293 | nt.assert_false(completer.has_open_quotes(s)) |
| 294 | |
| 295 | def test_has_open_quotes4(self): |
| 296 | for s in ['""', '""" """', '"hi" "ipython"']: |
| 297 | nt.assert_false(completer.has_open_quotes(s)) |
| 298 | |
| 299 | @decorators.knownfailureif( |
| 300 | sys.platform == "win32", "abspath completions fail on Windows" |
nothing calls this directly
no outgoing calls
no test coverage detected