(self)
| 2641 | eq_(g1.point_data, [PointData(point=Point(3, 5))]) |
| 2642 | |
| 2643 | def test_access(self): |
| 2644 | Point, Graph, PointData = self.classes("Point", "Graph", "PointData") |
| 2645 | g1 = Graph() |
| 2646 | g1.point_data.append(PointData(point=Point(3, 5))) |
| 2647 | g1.point_data.append(PointData(point=Point(10, 7))) |
| 2648 | eq_(g1.points, [Point(3, 5), Point(10, 7)]) |
| 2649 | |
| 2650 | |
| 2651 | class AttributeAccessTest(fixtures.TestBase): |