aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/transform_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/transform_tests.py')
-rw-r--r--python/tests/transform_tests.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/tests/transform_tests.py b/python/tests/transform_tests.py
new file mode 100644
index 00000000..669c2526
--- /dev/null
+++ b/python/tests/transform_tests.py
@@ -0,0 +1,15 @@
+
+import json
+import pytest
+from fatcat_tools.crossref_importer import FatcatCrossrefImporter
+from fatcat_tools.transforms import *
+
+from crossref import crossref_importer
+
+def test_elastic_convert(crossref_importer):
+ with open('tests/files/crossref-works.single.json', 'r') as f:
+ # not a single line
+ raw = json.loads(f.read())
+ (r, c) = crossref_importer.parse_crossref_dict(raw)
+ r.state = 'active'
+ release_elastic_dict(r)