diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-09 15:56:05 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-09 15:56:05 -0700 |
commit | 6fc8cee0d7b851fde2d0065ee2cea603ba4cfd53 (patch) | |
tree | 8ae3f83bc0b6cdb78f8a4c681f2744ab028ee6c7 /tests | |
parent | 5e00e96f20f8c70614b463015e64a277a4348576 (diff) | |
parent | c1a218d3b9d8ca02851df3b8eebb4685bd35776f (diff) | |
download | cryptography-6fc8cee0d7b851fde2d0065ee2cea603ba4cfd53.tar.gz cryptography-6fc8cee0d7b851fde2d0065ee2cea603ba4cfd53.tar.bz2 cryptography-6fc8cee0d7b851fde2d0065ee2cea603ba4cfd53.zip |
Merge pull request #48 from reaperhulk/master
Add OpenSSL Version Text Method
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bindings/test_openssl.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bindings/test_openssl.py b/tests/bindings/test_openssl.py index 9d637222..1579f002 100644 --- a/tests/bindings/test_openssl.py +++ b/tests/bindings/test_openssl.py @@ -17,3 +17,14 @@ from cryptography.bindings.openssl import api class TestOpenSSL(object): def test_api_exists(self): assert api + + def test_openssl_version_text(self): + """ + This test checks the value of OPENSSL_VERSION_TEXT. + + Unfortunately, this define does not appear to have a + formal content definition, so for now we'll test to see + if it starts with OpenSSL as that appears to be true + for every OpenSSL. + """ + assert api.openssl_version_text().startswith("OpenSSL") |