(self)
| 401 | class TestSCRAMSHA1(IntegrationTest): |
| 402 | @client_context.require_auth |
| 403 | def setUp(self): |
| 404 | super().setUp() |
| 405 | client_context.create_user("pymongo_test", "user", "pass", roles=["userAdmin", "readWrite"]) |
| 406 | |
| 407 | def tearDown(self): |
| 408 | client_context.drop_user("pymongo_test", "user") |
nothing calls this directly
no test coverage detected