diff options
Diffstat (limited to 'python/tests/api_client.py')
-rw-r--r-- | python/tests/api_client.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/python/tests/api_client.py b/python/tests/api_client.py new file mode 100644 index 00000000..37e3da56 --- /dev/null +++ b/python/tests/api_client.py @@ -0,0 +1,14 @@ + +import pytest +import fatcat.api_client +from fixtures import * + + +def test_client_health(api_client): + assert api_client.health() != None + + +def test_import_crossref(api_client): + api_client.import_crossref_file('tests/files/crossref-works.2018-01-21.badsample.json') + + # TODO: use API to check that entities actually created... |