diff options
Diffstat (limited to 'tests/x509')
-rw-r--r-- | tests/x509/test_x509.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/x509/test_x509.py b/tests/x509/test_x509.py index 4ce4d958..15cfe43d 100644 --- a/tests/x509/test_x509.py +++ b/tests/x509/test_x509.py @@ -2598,6 +2598,23 @@ class TestCertificateBuilder(object): crl_issuer=None, ) ]), + x509.FreshestCRL([ + x509.DistributionPoint( + full_name=None, + relative_name=x509.RelativeDistinguishedName([ + x509.NameAttribute( + NameOID.COMMON_NAME, + u"indirect CRL for indirectCRL CA3" + ), + x509.NameAttribute( + NameOID.COUNTRY_NAME, + u"US" + ), + ]), + reasons=None, + crl_issuer=None, + ) + ]), ] ) def test_ext(self, add_ext, backend): |