(pool)
| 164 | reset_called += 1 |
| 165 | |
| 166 | async def user(pool): |
| 167 | async with pool.acquire() as con: |
| 168 | if con._con not in cons: # `con` is `PoolConnectionProxy`. |
| 169 | raise RuntimeError('init was not called') |
| 170 | |
| 171 | async with self.create_pool(database='postgres', |
| 172 | min_size=2, |