(self)
| 516 | ) |
| 517 | |
| 518 | def test_update_4(self): |
| 519 | table1 = self.tables.mytable |
| 520 | |
| 521 | self.assert_compile( |
| 522 | update(table1).values({table1.c.name: table1.c.myid}), |
| 523 | "UPDATE mytable SET name=mytable.myid", |
| 524 | ) |
| 525 | |
| 526 | def test_update_5(self): |
| 527 | table1 = self.tables.mytable |
nothing calls this directly
no test coverage detected