(self, connection, stmt, rows, data)
| 551 | eq_(connection.execute(table.select()).first(), row) |
| 552 | |
| 553 | def _test_multi(self, connection, stmt, rows, data): |
| 554 | connection.execute(stmt, rows) |
| 555 | eq_( |
| 556 | connection.execute( |
| 557 | self.tables.foo.select().order_by(self.tables.foo.c.id) |
| 558 | ).all(), |
| 559 | data, |
| 560 | ) |
| 561 | |
| 562 | @testing.requires.sequences |
| 563 | def test_explicit_sequence(self, connection): |