(self)
| 519 | ) |
| 520 | |
| 521 | def test_insert_attrs(self): |
| 522 | asserter = self._test_insert(self.classes.PersonAttrs) |
| 523 | asserter.assert_( |
| 524 | CompiledSQL( |
| 525 | "INSERT INTO people_attrs (person_id, name) " |
| 526 | "VALUES (:person_id, :name)", |
| 527 | [{"person_id": 5, "name": "thename"}], |
| 528 | ) |
| 529 | ) |
| 530 | |
| 531 | def test_insert_both(self): |
| 532 | asserter = self._test_insert(self.classes.PersonBoth) |
nothing calls this directly
no test coverage detected