(self)
| 487 | ) |
| 488 | |
| 489 | def test_update_1(self): |
| 490 | table1 = self.tables.mytable |
| 491 | |
| 492 | self.assert_compile( |
| 493 | update(table1).where(table1.c.myid == 7), |
| 494 | "UPDATE mytable SET name=:name WHERE mytable.myid = :myid_1", |
| 495 | params={table1.c.name: "fred"}, |
| 496 | ) |
| 497 | |
| 498 | def test_update_2(self): |
| 499 | table1 = self.tables.mytable |
nothing calls this directly
no test coverage detected