(cls, connection)
| 928 | |
| 929 | @classmethod |
| 930 | def insert_data(cls, connection): |
| 931 | A = cls.classes.A |
| 932 | s = Session(connection) |
| 933 | s.add(A(data="d1", deferred_data="d2")) |
| 934 | s.commit() |
| 935 | |
| 936 | def _session_fixture(self, **kw): |
| 937 | # the "fake" key here is to ensure that neither id_chooser |