(self, type_)
| 543 | ("dicts",), |
| 544 | ) |
| 545 | def test_update_keys(self, type_): |
| 546 | if type_ == "states": |
| 547 | asserter = self._test_update_states(self.classes.PersonKeys) |
| 548 | else: |
| 549 | asserter = self._test_update(self.classes.PersonKeys) |
| 550 | asserter.assert_( |
| 551 | CompiledSQL( |
| 552 | "UPDATE people_keys SET name=:personname " |
| 553 | "WHERE people_keys.person_id = :people_keys_person_id", |
| 554 | [{"personname": "newname", "people_keys_person_id": 5}], |
| 555 | ) |
| 556 | ) |
| 557 | |
| 558 | @testing.combinations( |
| 559 | ("states",), |
nothing calls this directly
no test coverage detected