(self)
| 2634 | return Point, Graph, PointData |
| 2635 | |
| 2636 | def test_append(self): |
| 2637 | Point, Graph, PointData = self.classes("Point", "Graph", "PointData") |
| 2638 | |
| 2639 | g1 = Graph() |
| 2640 | g1.points.append(Point(3, 5)) |
| 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") |