diff options
author | Nick Bastin <nick.bastin@gmail.com> | 2015-12-13 06:46:15 -0800 |
---|---|---|
committer | Nick Bastin <nick.bastin@gmail.com> | 2015-12-13 06:46:15 -0800 |
commit | 6581507f92ab43182cfa10510e6f9e16ebaf3793 (patch) | |
tree | 85c64c6fcf2897abbc4ba72690a29989c9011f9e | |
parent | a73825bcfacd4c533de3c4490ff34a345f7f78f9 (diff) | |
download | cryptography-6581507f92ab43182cfa10510e6f9e16ebaf3793.tar.gz cryptography-6581507f92ab43182cfa10510e6f9e16ebaf3793.tar.bz2 cryptography-6581507f92ab43182cfa10510e6f9e16ebaf3793.zip |
Add bad input test for coverage of new validation
-rw-r--r-- | tests/test_x509.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py index 02201a37..c276f099 100644 --- a/tests/test_x509.py +++ b/tests/test_x509.py @@ -3251,6 +3251,10 @@ class TestObjectIdentifier(object): oid = x509.ObjectIdentifier("2.999.1") assert oid._name == 'Unknown OID' + def test_bad_input(self): + with pytest.raises(ValueError): + x509.ObjectIdentifier("notavalidform") + class TestName(object): def test_eq(self): |