(self)
| 239 | return await self.connect(**kwargs) |
| 240 | |
| 241 | async def test_auth_bad_user(self): |
| 242 | with self.assertRaises( |
| 243 | asyncpg.InvalidAuthorizationSpecificationError): |
| 244 | await self._try_connect(user='__nonexistent__') |
| 245 | |
| 246 | async def test_auth_trust(self): |
| 247 | conn = await self.connect(user='trust_user') |
nothing calls this directly
no test coverage detected