(self)
| 248 | await conn.close() |
| 249 | |
| 250 | async def test_auth_reject(self): |
| 251 | with self.assertRaisesRegex( |
| 252 | asyncpg.InvalidAuthorizationSpecificationError, |
| 253 | 'pg_hba.conf rejects connection'): |
| 254 | await self._try_connect(user='reject_user') |
| 255 | |
| 256 | async def test_auth_password_cleartext(self): |
| 257 | conn = await self.connect( |
nothing calls this directly
no test coverage detected