(self)
| 289 | nt.assert_equal(completer.has_open_quotes(s), '"') |
| 290 | |
| 291 | def test_has_open_quotes3(self): |
| 292 | for s in ["''", "''' '''", "'hi' 'ipython'"]: |
| 293 | nt.assert_false(completer.has_open_quotes(s)) |
| 294 | |
| 295 | def test_has_open_quotes4(self): |
| 296 | for s in ['""', '""" """', '"hi" "ipython"']: |
nothing calls this directly
no outgoing calls
no test coverage detected