(self)
| 221 | await pool2.close() |
| 222 | |
| 223 | async def test_pool_10(self): |
| 224 | pool = await self.create_pool(database='postgres', |
| 225 | min_size=1, max_size=1) |
| 226 | |
| 227 | con = await pool.acquire() |
| 228 | await pool.release(con) |
| 229 | await pool.release(con) |
| 230 | |
| 231 | await pool.close() |
| 232 | |
| 233 | async def test_pool_11(self): |
| 234 | pool = await self.create_pool(database='postgres', |
nothing calls this directly
no test coverage detected