diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-05-19 13:05:21 -0700 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-06-07 23:27:54 -0500 |
commit | 68b3b1ea8661b98c7afc3243e84c998601b70f18 (patch) | |
tree | 08ae523d4f6a76f005e53d4d06d30528fcd9b120 /tests/hazmat/backends/test_openssl.py | |
parent | ca820de5c681d5bb53cb8376eaf7bc85c4bbcdd3 (diff) | |
download | cryptography-68b3b1ea8661b98c7afc3243e84c998601b70f18.tar.gz cryptography-68b3b1ea8661b98c7afc3243e84c998601b70f18.tar.bz2 cryptography-68b3b1ea8661b98c7afc3243e84c998601b70f18.zip |
convert to cffi 1.0 precompile system
Diffstat (limited to 'tests/hazmat/backends/test_openssl.py')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 867c5dd6..b35e7670 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -482,14 +482,18 @@ class TestOpenSSLSerialisationWithOpenSSL(object): ) +class DummyLibrary(object): + Cryptography_HAS_EC = 0 + + class TestOpenSSLEllipticCurve(object): def test_elliptic_curve_supported(self, monkeypatch): - monkeypatch.setattr(backend._lib, "Cryptography_HAS_EC", 0) + monkeypatch.setattr(backend, "_lib", DummyLibrary()) assert backend.elliptic_curve_supported(None) is False def test_elliptic_curve_signature_algorithm_supported(self, monkeypatch): - monkeypatch.setattr(backend._lib, "Cryptography_HAS_EC", 0) + monkeypatch.setattr(backend, "_lib", DummyLibrary()) assert backend.elliptic_curve_signature_algorithm_supported( None, None |