(cls, connection)
| 1331 | |
| 1332 | @classmethod |
| 1333 | def insert_data(cls, connection): |
| 1334 | s = Session(connection) |
| 1335 | jill = cls.classes.Person(id=3, first_name="jill") |
| 1336 | s.add(jill) |
| 1337 | s.commit() |
| 1338 | |
| 1339 | def test_update_plain(self): |
| 1340 | Person = self.classes.Person |