(self)
| 1381 | }) |
| 1382 | |
| 1383 | def test_set_default_verify_paths(self): |
| 1384 | # There's not much we can do to test that it acts as expected, |
| 1385 | # so just check it doesn't crash or raise an exception. |
| 1386 | ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) |
| 1387 | ctx.set_default_verify_paths() |
| 1388 | |
| 1389 | @unittest.skipUnless(ssl.HAS_ECDH, "ECDH disabled on this OpenSSL build") |
| 1390 | def test_set_ecdh_curve(self): |
nothing calls this directly
no test coverage detected