diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-02-01 11:50:46 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-02-01 11:50:46 -0600 |
commit | 4a00dcd02b1d3c10f76273889e12b088662b218f (patch) | |
tree | 485ef437cc393e4c1e824844395a6938a9d19141 /tests/test_x509_ext.py | |
parent | 874e865af094ad667cacb3df5e6d72f31e08c615 (diff) | |
parent | 0a0293e535c8bfd1cf329f77b51d31400aadd5d1 (diff) | |
download | cryptography-4a00dcd02b1d3c10f76273889e12b088662b218f.tar.gz cryptography-4a00dcd02b1d3c10f76273889e12b088662b218f.tar.bz2 cryptography-4a00dcd02b1d3c10f76273889e12b088662b218f.zip |
Merge pull request #2705 from eeshangarg/inhibit-any-policy-hash
Refs #2578 -- implement __hash__ on InhibitAnyPolicy
Diffstat (limited to 'tests/test_x509_ext.py')
-rw-r--r-- | tests/test_x509_ext.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py index b13405de..d8a5f9de 100644 --- a/tests/test_x509_ext.py +++ b/tests/test_x509_ext.py @@ -3398,6 +3398,13 @@ class TestInhibitAnyPolicy(object): assert iap != iap2 assert iap != object() + def test_hash(self): + iap = x509.InhibitAnyPolicy(1) + iap2 = x509.InhibitAnyPolicy(1) + iap3 = x509.InhibitAnyPolicy(4) + assert hash(iap) == hash(iap2) + assert hash(iap) != hash(iap3) + @pytest.mark.requires_backend_interface(interface=RSABackend) @pytest.mark.requires_backend_interface(interface=X509Backend) |