diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-24 19:25:02 -0430 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-24 19:25:02 -0430 |
commit | 8573916ba3ea3b403f51ec4de4051db09fa91cda (patch) | |
tree | a56661e8b5df1377e9a59c6a72a70e12fef97e57 /tests/test_utils.py | |
parent | eb98d47b925071acb3f0b1df6146a533525520fc (diff) | |
parent | 3888a84c2b7fc45adf3fa665880d554c1766165e (diff) | |
download | cryptography-8573916ba3ea3b403f51ec4de4051db09fa91cda.tar.gz cryptography-8573916ba3ea3b403f51ec4de4051db09fa91cda.tar.bz2 cryptography-8573916ba3ea3b403f51ec4de4051db09fa91cda.zip |
Merge pull request #795 from public/split-vectors
Split vectors into cryptography_vectors
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r-- | tests/test_utils.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index e5ab4cf1..b63f1bab 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -20,6 +20,9 @@ import pretend import pytest +import cryptography +import cryptography_vectors + from .utils import ( check_backend_support, check_for_iface, load_cryptrec_vectors, load_fips_dsa_key_pair_vectors, load_hash_vectors, load_nist_vectors, @@ -1601,3 +1604,7 @@ de61329a78d526f65245380ce877e979c5b50de66c9c30d66382c8f254653d25a1eb1d3a4897d7\ ] assert expected == load_fips_dsa_key_pair_vectors(vector_data) + + +def test_vector_version(): + assert cryptography.__version__ == cryptography_vectors.__version__ |