(self)
| 1567 | self._test_roundtrip() |
| 1568 | |
| 1569 | def test_strings(self): |
| 1570 | edge, Edge, Point = ( |
| 1571 | self.tables.edge, |
| 1572 | self.classes.Edge, |
| 1573 | self.classes.Point, |
| 1574 | ) |
| 1575 | |
| 1576 | m = self.mapper_registry.map_imperatively(Edge, edge) |
| 1577 | m.add_property("start", sa.orm.composite(Point, "x1", "y1")) |
| 1578 | m.add_property("end", sa.orm.composite(Point, "x2", "y2")) |
| 1579 | |
| 1580 | self._test_roundtrip() |
| 1581 | |
| 1582 | def test_deferred_config(self): |
| 1583 | edge, Edge, Point = ( |
nothing calls this directly
no test coverage detected