(self)
| 670 | class TestAuthURIOptions(IntegrationTest): |
| 671 | @client_context.require_auth |
| 672 | def setUp(self): |
| 673 | super().setUp() |
| 674 | client_context.create_user("admin", "admin", "pass") |
| 675 | client_context.create_user("pymongo_test", "user", "pass", ["userAdmin", "readWrite"]) |
| 676 | |
| 677 | def tearDown(self): |
| 678 | client_context.drop_user("pymongo_test", "user") |
nothing calls this directly
no test coverage detected