(self)
| 529 | ) |
| 530 | |
| 531 | def test_insert_both(self): |
| 532 | asserter = self._test_insert(self.classes.PersonBoth) |
| 533 | asserter.assert_( |
| 534 | CompiledSQL( |
| 535 | "INSERT INTO people_both (person_id, name) " |
| 536 | "VALUES (:id_key, :name_key)", |
| 537 | [{"id_key": 5, "name_key": "thename"}], |
| 538 | ) |
| 539 | ) |
| 540 | |
| 541 | @testing.combinations( |
| 542 | ("states",), |
nothing calls this directly
no test coverage detected