(self)
| 373 | def test_extract_columns_from_select_handles_single_identifier(monkeypatch): |
| 374 | class SingleIdentifier(Identifier): |
| 375 | def get_real_name(self): |
| 376 | return 'column_name' |
| 377 | |
| 378 | monkeypatch.setattr( |
| 379 | sql_utils, |
no outgoing calls
no test coverage detected