(self, expr, table)
| 289 | assert alias.thing.method() == "method" |
| 290 | |
| 291 | def _assert_has_table(self, expr, table): |
| 292 | from sqlalchemy import Column # override testlib's override |
| 293 | |
| 294 | for child in expr.get_children(): |
| 295 | if isinstance(child, Column): |
| 296 | assert child.table is table |
| 297 | |
| 298 | def test_hybrid_descriptor_one(self): |
| 299 | class Point: |
nothing calls this directly
no test coverage detected