(self)
| 114 | ) |
| 115 | |
| 116 | def _fixture(self): |
| 117 | Graph, Edge, Point = ( |
| 118 | self.classes.Graph, |
| 119 | self.classes.Edge, |
| 120 | self.classes.Point, |
| 121 | ) |
| 122 | |
| 123 | sess = Session(testing.db) |
| 124 | g = Graph( |
| 125 | id=1, |
| 126 | edges=[ |
| 127 | Edge(Point(3, 4), Point(5, 6)), |
| 128 | Edge(Point(14, 5), Point(2, 7)), |
| 129 | ], |
| 130 | ) |
| 131 | sess.add(g) |
| 132 | sess.commit() |
| 133 | return sess |
| 134 | |
| 135 | def test_early_configure(self): |
| 136 | # test [ticket:2935], that we can call a composite |
no test coverage detected