blob: 1f37f4b027ede253a0f416cc27b998ee735bf2da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from saml2.config import Config
from saml2.metadata import entity_descriptor
__author__ = 'roland'
fil = "sp_mdext_conf.py"
cnf = Config().load_file(fil, metadata_construction=True)
ed = entity_descriptor(cnf)
print ed
assert ed.spsso_descriptor.extensions
assert len(ed.spsso_descriptor.extensions.extension_elements) == 3
|