(self)
| 532 | def test_need_completion_refresh_ignores_queries_that_fail_to_split(monkeypatch): |
| 533 | class BrokenQuery: |
| 534 | def split(self): |
| 535 | raise RuntimeError('broken') |
| 536 | |
| 537 | monkeypatch.setattr(sql_utils.sqlparse, 'split', lambda _queries: [BrokenQuery(), 'select 1;']) |
| 538 |
no outgoing calls
no test coverage detected