(cls, connection)
| 1291 | |
| 1292 | @classmethod |
| 1293 | def insert_data(cls, connection): |
| 1294 | s = Session(connection) |
| 1295 | jill = cls.classes.Person(id=3, first_name="jill") |
| 1296 | s.add(jill) |
| 1297 | s.commit() |
| 1298 | |
| 1299 | def test_update_plain(self): |
| 1300 | Person = self.classes.Person |