(self)
| 6238 | ) |
| 6239 | |
| 6240 | def test_next_sequence_value(self): |
| 6241 | # using descriptive text that is intentionally not compatible |
| 6242 | # with any particular backend, since all backends have different |
| 6243 | # syntax |
| 6244 | |
| 6245 | seq = Sequence("my_sequence") |
| 6246 | |
| 6247 | eq_ignore_whitespace( |
| 6248 | str(seq.next_value()), "<next sequence value: my_sequence>" |
| 6249 | ) |
| 6250 | |
| 6251 | def test_returning(self): |
| 6252 | stmt = table1.insert().returning(table1.c.myid) |
nothing calls this directly
no test coverage detected