(self)
| 288 | await pool.close() |
| 289 | |
| 290 | async def test_pool_12(self): |
| 291 | pool = await self.create_pool(database='postgres', |
| 292 | min_size=1, max_size=1) |
| 293 | |
| 294 | async with pool.acquire() as con: |
| 295 | self.assertTrue(isinstance(con, pg_connection.Connection)) |
| 296 | self.assertFalse(isinstance(con, list)) |
| 297 | |
| 298 | await pool.close() |
| 299 | |
| 300 | async def test_pool_13(self): |
| 301 | pool = await self.create_pool(database='postgres', |
nothing calls this directly
no test coverage detected