(self)
| 223 | |
| 224 | @unittest.skipUnless(_HAVE_PYMONGOCRYPT, "pymongocrypt is not installed") |
| 225 | def test_kwargs(self): |
| 226 | opts = AutoEncryptionOpts(KMS_PROVIDERS, "keyvault.datakeys") |
| 227 | client = self.simple_client(auto_encryption_opts=opts, connect=False) |
| 228 | self.assertEqual(get_client_opts(client).auto_encryption_opts, opts) |
| 229 | |
| 230 | |
| 231 | class EncryptionIntegrationTest(IntegrationTest): |
nothing calls this directly
no test coverage detected