diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-08-24 12:28:51 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2018-08-24 12:28:51 -0700 |
commit | 3782311e29b7e477e1936c89f55ff6483fd02e65 (patch) | |
tree | b4484b9839f24d799d36881dfc85701ad888b94e /mapreduce/tests/test_grobid2json.py | |
parent | 2a998189ef49976bf01cc95acc1f18a73e1f0ff6 (diff) | |
download | sandcrawler-3782311e29b7e477e1936c89f55ff6483fd02e65.tar.gz sandcrawler-3782311e29b7e477e1936c89f55ff6483fd02e65.zip |
rename ./mapreduce to ./python
Diffstat (limited to 'mapreduce/tests/test_grobid2json.py')
-rw-r--r-- | mapreduce/tests/test_grobid2json.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mapreduce/tests/test_grobid2json.py b/mapreduce/tests/test_grobid2json.py deleted file mode 100644 index 8497b10..0000000 --- a/mapreduce/tests/test_grobid2json.py +++ /dev/null @@ -1,22 +0,0 @@ - -import xml -import json -import pytest -from grobid2json import * - - -def test_small_xml(): - - with open('tests/files/small.xml', 'r') as f: - tei_xml = f.read() - with open('tests/files/small.json', 'r') as f: - json_form = json.loads(f.read()) - - assert teixml2json(tei_xml) == json_form - -def test_invalid_xml(): - - with pytest.raises(xml.etree.ElementTree.ParseError): - teixml2json("this is not XML") - with pytest.raises(ValueError): - teixml2json("<xml></xml>") |