(self)
| 167 | req.extensions |
| 168 | |
| 169 | def test_load_request_two_requests(self): |
| 170 | with pytest.raises(NotImplementedError): |
| 171 | _load_data( |
| 172 | os.path.join("x509", "ocsp", "req-multi-sha1.der"), |
| 173 | ocsp.load_der_ocsp_request, |
| 174 | ) |
| 175 | |
| 176 | def test_invalid_hash_algorithm(self): |
| 177 | req = _load_data( |
nothing calls this directly
no test coverage detected