(self)
| 207 | self.assertIs(statement.references_table("other"), False) |
| 208 | |
| 209 | def test_references_column(self): |
| 210 | statement = Statement( |
| 211 | "", |
| 212 | reference=MockReference("", {}, {("table", "column")}, {}), |
| 213 | non_reference="", |
| 214 | ) |
| 215 | self.assertIs(statement.references_column("table", "column"), True) |
| 216 | self.assertIs(statement.references_column("other", "column"), False) |
| 217 | |
| 218 | def test_references_index(self): |
| 219 | statement = Statement( |
nothing calls this directly
no test coverage detected