(self)
| 215 | |
| 216 | class TestClientOptions(PyMongoTestCase): |
| 217 | def test_default(self): |
| 218 | client = self.simple_client(connect=False) |
| 219 | self.assertEqual(get_client_opts(client).auto_encryption_opts, None) |
| 220 | |
| 221 | client = self.simple_client(auto_encryption_opts=None, connect=False) |
| 222 | self.assertEqual(get_client_opts(client).auto_encryption_opts, None) |
| 223 | |
| 224 | @unittest.skipUnless(_HAVE_PYMONGOCRYPT, "pymongocrypt is not installed") |
| 225 | def test_kwargs(self): |
nothing calls this directly
no test coverage detected