(cls)
| 457 | class TestSspiAuthentication(BaseTestAuthentication): |
| 458 | @classmethod |
| 459 | def setUpClass(cls): |
| 460 | cls.username = f'{os.getlogin()}@{socket.gethostname()}' |
| 461 | cls.USERS = [ |
| 462 | (cls.username, 'sspi', None), |
| 463 | (f'wrong-{cls.username}', 'sspi', None), |
| 464 | ] |
| 465 | super().setUpClass() |
| 466 | |
| 467 | async def test_auth_sspi(self): |
| 468 | conn = await self.connect(user=self.username) |
nothing calls this directly
no test coverage detected