From 0a0293e535c8bfd1cf329f77b51d31400aadd5d1 Mon Sep 17 00:00:00 2001 From: Eeshan Garg Date: Mon, 1 Feb 2016 12:56:40 -0330 Subject: Refs #2578 -- implement __hash__ on InhibitAnyPolicy --- tests/test_x509_ext.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/test_x509_ext.py') 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) -- cgit v1.2.3