diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-25 17:34:55 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-25 17:34:55 -0700 |
commit | d1f0c6621036bfb801066b2c34fe5bff6f234388 (patch) | |
tree | fa7c955afae211f032a492162664941e060ff77b /tests/test_utils.py | |
parent | daca59235c6be9ae11044aa8bb14e137c0435dd2 (diff) | |
parent | 902d8cfd58de395748d71f449944faa9dbac8725 (diff) | |
download | cryptography-d1f0c6621036bfb801066b2c34fe5bff6f234388.tar.gz cryptography-d1f0c6621036bfb801066b2c34fe5bff6f234388.tar.bz2 cryptography-d1f0c6621036bfb801066b2c34fe5bff6f234388.zip |
Merge pull request #1437 from reaperhulk/conftest-changes
filter backends during initial generation to elide tests entirely
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r-- | tests/test_utils.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index 6c8d088b..8bb8422c 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -32,7 +32,7 @@ from .utils import ( load_fips_ecdsa_key_pair_vectors, load_fips_ecdsa_signing_vectors, load_hash_vectors, load_kasvs_dh_vectors, load_nist_vectors, load_pkcs1_vectors, load_rsa_nist_vectors, load_vectors_from_file, - raises_unsupported_algorithm, select_backends + raises_unsupported_algorithm, select_backends, skip_if_empty ) @@ -82,6 +82,13 @@ def test_select_two_backends(): assert selected_backends == [b1, b2] +def test_skip_if_empty(): + with pytest.raises(pytest.skip.Exception): + skip_if_empty([], [FakeInterface]) + + skip_if_empty(["notempty"], [FakeInterface]) + + def test_check_backend_support_skip(): supported = pretend.stub( kwargs={"only_if": lambda backend: False, "skip_message": "Nope"} |