diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/files/citation/editor_no_persname.tei.xml | 14 | ||||
-rw-r--r-- | tests/test_parse.py | 16 |
2 files changed, 30 insertions, 0 deletions
diff --git a/tests/files/citation/editor_no_persname.tei.xml b/tests/files/citation/editor_no_persname.tei.xml new file mode 100644 index 0000000..6e49494 --- /dev/null +++ b/tests/files/citation/editor_no_persname.tei.xml @@ -0,0 +1,14 @@ +<biblStruct > + <analytic> + <title/> + </analytic> + <monogr> + <title level="j">Clinical Gynecologic Endocrinology and Infertility</title> + <editor>Mitchell C</editor> + <imprint> + <biblScope unit="page" from="651" to="666" /> + <date type="published" when="1994">1994</date> + <publisher>Williams and Wilkins</publisher> + </imprint> + </monogr> +</biblStruct> diff --git a/tests/test_parse.py b/tests/test_parse.py index 9d8f4ff..a818f09 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -440,3 +440,19 @@ def test_author_email() -> None: assert doc.body is None assert doc.acknowledgement is None assert doc.annex is None + + +def test_citation_bare_editor() -> None: + with open("tests/files/citation/editor_no_persname.tei.xml", "r") as f: + tei_xml = f.read() + + ref = parse_citation_xml(tei_xml) + assert ref + assert ref.title is None + assert ref.journal == "Clinical Gynecologic Endocrinology and Infertility" + assert ref.publisher == "Williams and Wilkins" + assert ref.date == "1994" + assert ref.authors == [] + assert ref.editors + assert len(ref.editors) == 1 + assert ref.editors[0].full_name == "Mitchell C" |