Skip to content

Commit

Permalink
tests: cover more methods
Browse files Browse the repository at this point in the history
  • Loading branch information
rien333 committed Dec 6, 2024
1 parent 94e7501 commit 3ca6100
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_mdto_xsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
IdentificatieGegevens,
VerwijzingGegevens,
BeperkingGebruikGegevens,
DekkingInTijdGegevens,
BegripGegevens,
create_bestand,
)
Expand All @@ -23,6 +24,11 @@ def test_informatieobject_xml_validity(mdto_xsd):
beperkingGebruik=BeperkingGebruikGegevens(
BegripGegevens("nvt", VerwijzingGegevens("geen"))
),
dekkingInTijd=DekkingInTijdGegevens(
BegripGegevens("Looptijd dossier", VerwijzingGegevens("Begrippenlijst Events en Periode's Corsa")),
dekkingInTijdBegindatum="1999",
dekkingInTijdEinddatum="2005",
),
waardering=BegripGegevens(
"V", VerwijzingGegevens("Begrippenlijst Waarderingen MDTO")
),
Expand All @@ -36,6 +42,7 @@ def test_informatieobject_xml_validity(mdto_xsd):
informatieobject_xml = ET.fromstring(ET.tostring(informatieobject.to_xml()))

# validate against schema
# change to assertValid to see more detailed errors
assert mdto_schema.validate(informatieobject_xml)


Expand Down

0 comments on commit 3ca6100

Please sign in to comment.