diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-12-06 16:25:21 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-12-06 16:50:00 -0800 |
commit | f60d37fb2f9079e6707f9a253983b6ea07964e18 (patch) | |
tree | e36db11b2123a7a50d48dbf0f8449bcef9e13fcc /tests | |
parent | c1af67fc72c671c4dc40536960ab47e78195c881 (diff) | |
download | fatcat-scholar-f60d37fb2f9079e6707f9a253983b6ea07964e18.tar.gz fatcat-scholar-f60d37fb2f9079e6707f9a253983b6ea07964e18.zip |
fetch GROBID-parsed refs along with crossref metadata
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_work_pipeline.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_work_pipeline.py b/tests/test_work_pipeline.py index a28f728..bc8a79a 100644 --- a/tests/test_work_pipeline.py +++ b/tests/test_work_pipeline.py @@ -73,7 +73,7 @@ def test_run_transform(mocker: Any) -> None: responses.add( responses.GET, - "http://disabled-during-tests-bogus.xyz:3333/crossref?doi=eq.10.7717%2Fpeerj.4375", + "http://disabled-during-tests-bogus.xyz:3333/crossref_with_refs?doi=eq.10.7717%2Fpeerj.4375", status=200, json=[ { @@ -83,6 +83,7 @@ def test_run_transform(mocker: Any) -> None: "title": "something", "TODO_better_object": 3, }, + "refs_json": [], } ], ) |