(self)
| 106 | 'CREATE TABLE exmany (a text, b int PRIMARY KEY)')) |
| 107 | |
| 108 | def tearDown(self): |
| 109 | self.loop.run_until_complete(self.con.execute('DROP TABLE exmany')) |
| 110 | super().tearDown() |
| 111 | |
| 112 | async def test_executemany_basic(self): |
| 113 | result = await self.con.executemany(''' |