diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-29 16:58:04 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-29 16:58:06 -0800 |
commit | 1305a503b116e8f8081cbc48dc14c92b4b64b17d (patch) | |
tree | 0f69fba9f48470037b221174c42085b2e1c89272 /python/tests/import_crossref.py | |
parent | 26d30331174087a57591c9860c1a84d7010b3f20 (diff) | |
download | fatcat-1305a503b116e8f8081cbc48dc14c92b4b64b17d.tar.gz fatcat-1305a503b116e8f8081cbc48dc14c92b4b64b17d.zip |
crossref import tweaks/fixes
- refs: article-title not title; save unstructured; authors not author
- save 'language' field (already an ISO code)
Diffstat (limited to 'python/tests/import_crossref.py')
-rw-r--r-- | python/tests/import_crossref.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/tests/import_crossref.py b/python/tests/import_crossref.py index cb2143b3..d439137d 100644 --- a/python/tests/import_crossref.py +++ b/python/tests/import_crossref.py @@ -82,6 +82,7 @@ def test_crossref_dict_parse(crossref_importer): assert r.license_slug == "CC-BY-NC-ND" assert r.original_title == "Renormalized perturbation theory auf deutsch" assert r.isbn13 == "978-3-16-148410-0" + assert r.language == "fr" assert 'subtitle' not in r.extra assert 'subtitle' not in r.extra['crossref'] assert 'funder' not in r.extra @@ -107,7 +108,7 @@ def test_crossref_dict_parse(crossref_importer): assert r.refs[0].year == 1972 assert r.refs[0].locator == "1734" assert r.refs[0].container_name == "J. Chem. Phys." - assert r.refs[0].extra == {"volume": "57", "author": "Swenson", "doi": "10.1063/1.1678462", "medium": "DVD"} + assert r.refs[0].extra == {"volume": "57", "authors": ["Swenson"], "doi": "10.1063/1.1678462", "medium": "DVD"} assert r.refs[2].key == 'BIB3' assert r.refs[2].extra.get('author') is None assert r.refs[2].container_name == "Hypervirial Theorem's, Lecture Notes in Chemistry <3" |