(*args, **kwargs)
| 142 | reset_called = 0 |
| 143 | |
| 144 | async def connect(*args, **kwargs): |
| 145 | nonlocal connect_called |
| 146 | connect_called += 1 |
| 147 | return await pg_connection.connect(*args, **kwargs) |
| 148 | |
| 149 | async def setup(con): |
| 150 | nonlocal setup_called |
no outgoing calls
no test coverage detected