(self)
| 509 | ) |
| 510 | |
| 511 | def test_insert_keys(self): |
| 512 | asserter = self._test_insert(self.classes.PersonKeys) |
| 513 | asserter.assert_( |
| 514 | CompiledSQL( |
| 515 | "INSERT INTO people_keys (person_id, name) " |
| 516 | "VALUES (:id, :personname)", |
| 517 | [{"id": 5, "personname": "thename"}], |
| 518 | ) |
| 519 | ) |
| 520 | |
| 521 | def test_insert_attrs(self): |
| 522 | asserter = self._test_insert(self.classes.PersonAttrs) |
nothing calls this directly
no test coverage detected