(self)
| 281 | check_line_split(self.sp, t) |
| 282 | |
| 283 | def test_has_open_quotes1(self): |
| 284 | for s in ["'", "'''", "'hi' '"]: |
| 285 | nt.assert_equal(completer.has_open_quotes(s), "'") |
| 286 | |
| 287 | def test_has_open_quotes2(self): |
| 288 | for s in ['"', '"""', '"hi" "']: |
nothing calls this directly
no outgoing calls
no test coverage detected