diff options
author | Martin Czygan <martin@archive.org> | 2020-09-22 23:28:48 +0000 |
---|---|---|
committer | Martin Czygan <martin@archive.org> | 2020-09-22 23:28:48 +0000 |
commit | bca7d905b377e5e8cd04666a29eef2dd391dfa15 (patch) | |
tree | ad89a3c8f56620d341cc35aecbca44f051443d0d /python/tests | |
parent | 5c879f7f147b11d1013772b2f9a74442984f58fc (diff) | |
parent | 6589bffcde0ece37f4976553407ee849af7f28b5 (diff) | |
download | fatcat-bca7d905b377e5e8cd04666a29eef2dd391dfa15.tar.gz fatcat-bca7d905b377e5e8cd04666a29eef2dd391dfa15.zip |
Merge branch 'martin-datacite-spammy-title' into 'master'
address spammy datacite titles
See merge request webgroup/fatcat!85
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/import_datacite.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/tests/import_datacite.py b/python/tests/import_datacite.py index ba09ba74..6bc0e7b8 100644 --- a/python/tests/import_datacite.py +++ b/python/tests/import_datacite.py @@ -318,6 +318,12 @@ def test_parse_datacite_dates(): result = parse_datacite_dates(case.input) assert result == case.result, case.about +def test_datacite_spammy_title(datacite_importer): + r = datacite_importer.parse_record({"title": """HD! My Hero academia + Heroes: Rising [2020]Full Movie Watch + Online And Free Download""", + "attributes": {"doi": "10.1234/1234"}}) + assert r == False def test_datacite_importer(datacite_importer): last_index = datacite_importer.api.get_changelog(limit=1)[0].index |