aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-25 16:26:03 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-25 16:26:03 -0500
commite6e1b417fd09d0b1f4ff6e54019fe7bebc0ec25c (patch)
tree6ec2130d8ac42a20f59e93dfdffd32294e74783f /tests/conftest.py
parent4f034181c870030ed5f2c67e830bc1ae67176f41 (diff)
parent458c09bdb2be4d39b8897db790349cc89faf3e6c (diff)
downloadcryptography-e6e1b417fd09d0b1f4ff6e54019fe7bebc0ec25c.tar.gz
cryptography-e6e1b417fd09d0b1f4ff6e54019fe7bebc0ec25c.tar.bz2
cryptography-e6e1b417fd09d0b1f4ff6e54019fe7bebc0ec25c.zip
Merge pull request #958 from public/openssl-loading-backend-iface
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)