Return a list of sql commands to setup the DB for the fetch tests.
(self)
| 521 | ] |
| 522 | |
| 523 | def _populate(self): |
| 524 | """Return a list of sql commands to setup the DB for the fetch |
| 525 | tests. |
| 526 | """ |
| 527 | populate = [ |
| 528 | f"insert into {self.table_prefix}booze values ('{s}')" for s in self.samples |
| 529 | ] |
| 530 | return populate |
| 531 | |
| 532 | def test_fetchmany(self): |
| 533 | con = self._connect() |
no outgoing calls