aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-04-23 20:58:37 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-04-25 21:30:57 +0100
commit458c09bdb2be4d39b8897db790349cc89faf3e6c (patch)
treefbd057d6ff05747cceb2138b4625bcff49e48fd6 /tests/conftest.py
parent28091767ff7fdf80cb1d3ae45915949dfe9793b5 (diff)
downloadcryptography-458c09bdb2be4d39b8897db790349cc89faf3e6c.tar.gz
cryptography-458c09bdb2be4d39b8897db790349cc89faf3e6c.tar.bz2
cryptography-458c09bdb2be4d39b8897db790349cc89faf3e6c.zip
Rename OpenSSLSerializationBackend
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index d55e6cf6..86d5a03b 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -18,7 +18,7 @@ import pytest
from cryptography.hazmat.backends import _available_backends
from cryptography.hazmat.backends.interfaces import (
CMACBackend, CipherBackend, DSABackend, HMACBackend, HashBackend,
- PBKDF2HMACBackend, RSABackend
+ PBKDF2HMACBackend, RSABackend, TraditionalOpenSSLSerializationBackend
)
from .utils import check_backend_support, check_for_iface, select_backends
@@ -40,6 +40,11 @@ def pytest_runtest_setup(item):
check_for_iface("pbkdf2hmac", PBKDF2HMACBackend, item)
check_for_iface("dsa", DSABackend, item)
check_for_iface("rsa", RSABackend, item)
+ check_for_iface(
+ "traditional_openssl_serialization",
+ TraditionalOpenSSLSerializationBackend,
+ item
+ )
check_backend_support(item)