(request)
| 38 | |
| 39 | @pytest.fixture() |
| 40 | def backend(request): |
| 41 | check_backend_support(openssl_backend, request) |
| 42 | |
| 43 | # Ensure the error stack is clear before the test |
| 44 | errors = openssl_backend._consume_errors() |
| 45 | assert not errors |
| 46 | yield openssl_backend |
| 47 | # Ensure the error stack is clear after the test |
| 48 | errors = openssl_backend._consume_errors() |
| 49 | assert not errors |
| 50 | |
| 51 | |
| 52 | @pytest.fixture() |
nothing calls this directly
no test coverage detected