aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_ec.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-01-10 15:23:40 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-01-10 15:23:40 -0600
commited2d4b184a9acb5de1fa25aaacf4a71d7e23f82e (patch)
treeb7db119e1276a32f9336baade3d19368144f4cc4 /tests/hazmat/primitives/test_ec.py
parent3f6f8f593e0bd9910d406ec56bfeceba5a2badbf (diff)
parent41777171d35c2935e5d690cd51edf3ad89803bad (diff)
downloadcryptography-ed2d4b184a9acb5de1fa25aaacf4a71d7e23f82e.tar.gz
cryptography-ed2d4b184a9acb5de1fa25aaacf4a71d7e23f82e.tar.bz2
cryptography-ed2d4b184a9acb5de1fa25aaacf4a71d7e23f82e.zip
Merge pull request #2661 from alex/coverage
Write some tests for skip conditions in tests.
Diffstat (limited to 'tests/hazmat/primitives/test_ec.py')
-rw-r--r--tests/hazmat/primitives/test_ec.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py
index 86132678..600ea27f 100644
--- a/tests/hazmat/primitives/test_ec.py
+++ b/tests/hazmat/primitives/test_ec.py
@@ -98,6 +98,12 @@ def test_skip_exchange_algorithm_unsupported(backend):
_skip_exchange_algorithm_unsupported(backend, ec.ECDH(), DummyCurve())
+@pytest.mark.requires_backend_interface(interface=EllipticCurveBackend)
+def test_skip_ecdsa_vector(backend):
+ with pytest.raises(pytest.skip.Exception):
+ _skip_ecdsa_vector(backend, DummyCurve, hashes.SHA256)
+
+
def test_ec_numbers():
numbers = ec.EllipticCurvePrivateNumbers(
1,