(self, attr, expected)
| 3691 | eq_(obj[0], value) |
| 3692 | |
| 3693 | def _test_insert(self, attr, expected): |
| 3694 | Thing, AltNameThing = self.classes.Thing, self.classes.AltNameThing |
| 3695 | |
| 3696 | s = fixture_session() |
| 3697 | t1 = Thing(**{attr: None}) |
| 3698 | s.add(t1) |
| 3699 | |
| 3700 | t2 = AltNameThing(**{"_foo_" + attr: None}) |
| 3701 | s.add(t2) |
| 3702 | |
| 3703 | s.commit() |
| 3704 | |
| 3705 | self._assert_col(attr, expected) |
| 3706 | |
| 3707 | def _test_bulk_insert(self, attr, expected): |
| 3708 | Thing, AltNameThing = self.classes.Thing, self.classes.AltNameThing |
no test coverage detected