(self)
| 1554 | self._test_roundtrip() |
| 1555 | |
| 1556 | def test_attributes(self): |
| 1557 | edge, Edge, Point = ( |
| 1558 | self.tables.edge, |
| 1559 | self.classes.Edge, |
| 1560 | self.classes.Point, |
| 1561 | ) |
| 1562 | |
| 1563 | m = self.mapper_registry.map_imperatively(Edge, edge) |
| 1564 | m.add_property("start", sa.orm.composite(Point, Edge.x1, Edge.y1)) |
| 1565 | m.add_property("end", sa.orm.composite(Point, Edge.x2, Edge.y2)) |
| 1566 | |
| 1567 | self._test_roundtrip() |
| 1568 | |
| 1569 | def test_strings(self): |
| 1570 | edge, Edge, Point = ( |
nothing calls this directly
no test coverage detected