(self)
| 200 | |
| 201 | class StatementTests(SimpleTestCase): |
| 202 | def test_references_table(self): |
| 203 | statement = Statement( |
| 204 | "", reference=MockReference("", {"table"}, {}, {}), non_reference="" |
| 205 | ) |
| 206 | self.assertIs(statement.references_table("table"), True) |
| 207 | self.assertIs(statement.references_table("other"), False) |
| 208 | |
| 209 | def test_references_column(self): |
| 210 | statement = Statement( |
nothing calls this directly
no test coverage detected