(self)
| 101 | |
| 102 | class TestExecuteMany(tb.ConnectedTestCase): |
| 103 | def setUp(self): |
| 104 | super().setUp() |
| 105 | self.loop.run_until_complete(self.con.execute( |
| 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')) |