(self)
| 231 | ) |
| 232 | |
| 233 | def test_basic(self): |
| 234 | TT = self.classes.TT |
| 235 | |
| 236 | t1 = TT() |
| 237 | t1.children.append(TT()) |
| 238 | t1.children.append(TT()) |
| 239 | |
| 240 | s = fixture_session() |
| 241 | s.add(t1) |
| 242 | s.flush() |
| 243 | s.expunge_all() |
| 244 | t = s.query(TT).filter_by(id=t1.id).one() |
| 245 | eq_(t.children[0].parent_uuid, t1.uuid) |
| 246 | |
| 247 | def test_lazy_clause(self): |
| 248 | TT = self.classes.TT |
nothing calls this directly
no test coverage detected