(self, tmp_path)
| 114 | assert ("four.com", x509.GeneralNames([])) in tstore.certs |
| 115 | |
| 116 | def test_create_dhparams(self, tmp_path): |
| 117 | filename = tmp_path / "dhparam.pem" |
| 118 | certs.CertStore.load_dhparam(filename) |
| 119 | assert filename.exists() |
| 120 | |
| 121 | @skip_windows |
| 122 | def test_umask_secret(self, tmpdir): |
nothing calls this directly
no test coverage detected