(self)
| 401 | class TestSCRAMSHA1(AsyncIntegrationTest): |
| 402 | @async_client_context.require_auth |
| 403 | async def asyncSetUp(self): |
| 404 | await super().asyncSetUp() |
| 405 | await async_client_context.create_user( |
| 406 | "pymongo_test", "user", "pass", roles=["userAdmin", "readWrite"] |
| 407 | ) |
| 408 | |
| 409 | async def asyncTearDown(self): |
| 410 | await async_client_context.drop_user("pymongo_test", "user") |
nothing calls this directly
no test coverage detected