diff options
Diffstat (limited to 'python/tests/transform_tests.py')
-rw-r--r-- | python/tests/transform_tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/tests/transform_tests.py b/python/tests/transform_tests.py index 18522eff..a42db244 100644 --- a/python/tests/transform_tests.py +++ b/python/tests/transform_tests.py @@ -2,6 +2,7 @@ import json import pytest from fatcat_tools import * +from fatcat_client import * from import_crossref import crossref_importer @@ -12,3 +13,7 @@ def test_elasticsearch_convert(crossref_importer): (r, c) = crossref_importer.parse_crossref_dict(raw) r.state = 'active' release_to_elasticsearch(r) + +def test_elasticsearch_from_json(): + r = entity_from_json(open('./tests/files/math_universe.json', 'r').read(), ReleaseEntity) + release_to_elasticsearch(r) |