(self)
| 507 | ) |
| 508 | |
| 509 | def test_update_3(self): |
| 510 | table1 = self.tables.mytable |
| 511 | |
| 512 | self.assert_compile( |
| 513 | update(table1).where(table1.c.myid == 7), |
| 514 | "UPDATE mytable SET name=:name WHERE mytable.myid = :myid_1", |
| 515 | params={"name": "fred"}, |
| 516 | ) |
| 517 | |
| 518 | def test_update_4(self): |
| 519 | table1 = self.tables.mytable |
nothing calls this directly
no test coverage detected