(cls)
| 1555 | |
| 1556 | @classmethod |
| 1557 | def setup_mappers(cls): |
| 1558 | foo = cls.tables.foo |
| 1559 | |
| 1560 | cls.Point = cls._type_fixture() |
| 1561 | |
| 1562 | cls.mapper_registry.map_imperatively( |
| 1563 | Foo, |
| 1564 | foo, |
| 1565 | properties={"data": composite(cls.Point, foo.c.x, foo.c.y)}, |
| 1566 | ) |
| 1567 | |
| 1568 | def test_evt_on_flush_refresh(self): |
| 1569 | # this still worked prior to #3427 being fixed in any case |
nothing calls this directly
no test coverage detected