diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-23 17:36:22 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-23 17:36:22 -0700 |
commit | 5416a2570e7167ca2e62352dda10d2f371b994a7 (patch) | |
tree | 02439733d6b74dc6e83aaa49a314b49c5ece5a67 /tests/api_client.py | |
parent | 5bdd3f6e871599acb339aadc9b78cc12860f9759 (diff) | |
download | fatcat-5416a2570e7167ca2e62352dda10d2f371b994a7.tar.gz fatcat-5416a2570e7167ca2e62352dda10d2f371b994a7.zip |
start work on api client
Diffstat (limited to 'tests/api_client.py')
-rw-r--r-- | tests/api_client.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/api_client.py b/tests/api_client.py new file mode 100644 index 00000000..37e3da56 --- /dev/null +++ b/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... |