(self)
| 417 | cls.mapper_registry.map_imperatively(A, a) |
| 418 | |
| 419 | def test_insert_w_fetch(self): |
| 420 | A = self.classes.A |
| 421 | |
| 422 | s = fixture_session() |
| 423 | a1 = A(x=1) |
| 424 | s.bulk_save_objects([a1]) |
| 425 | s.commit() |
| 426 | |
| 427 | def test_update_w_fetch(self): |
| 428 | A = self.classes.A |
nothing calls this directly
no test coverage detected