(self, attr, expected)
| 3705 | self._assert_col(attr, expected) |
| 3706 | |
| 3707 | def _test_bulk_insert(self, attr, expected): |
| 3708 | Thing, AltNameThing = self.classes.Thing, self.classes.AltNameThing |
| 3709 | |
| 3710 | s = fixture_session() |
| 3711 | s.bulk_insert_mappings(Thing, [{attr: None}]) |
| 3712 | s.bulk_insert_mappings(AltNameThing, [{"_foo_" + attr: None}]) |
| 3713 | s.commit() |
| 3714 | |
| 3715 | self._assert_col(attr, expected) |
| 3716 | |
| 3717 | def _test_insert_novalue(self, attr, expected): |
| 3718 | Thing, AltNameThing = self.classes.Thing, self.classes.AltNameThing |
no test coverage detected