()
| 1665 | |
| 1666 | async def test_connection_use_after_close(self): |
| 1667 | def check(): |
| 1668 | return self.assertRaisesRegex(asyncpg.InterfaceError, |
| 1669 | 'connection is closed') |
| 1670 | |
| 1671 | await self.con.close() |
| 1672 |
nothing calls this directly
no outgoing calls
no test coverage detected