(self)
| 387 | def test_extract_columns_from_select_ignores_unhandled_identifier_list_entries(monkeypatch): |
| 388 | class WeirdIdentifierList(IdentifierList): |
| 389 | def get_identifiers(self): |
| 390 | return [object()] |
| 391 | |
| 392 | monkeypatch.setattr( |
| 393 | sql_utils, |
no outgoing calls
no test coverage detected