diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-18 15:28:08 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-18 15:28:13 -0700 |
commit | fb3be0f3a44bf8a727f66a08bded28fa24e23e2b (patch) | |
tree | b4451b3f12a23fa425d7973f347a6685bbde9f10 /python/tests | |
parent | fb53198956843954a981dbbe83b4727b25ae6427 (diff) | |
download | fatcat-fb3be0f3a44bf8a727f66a08bded28fa24e23e2b.tar.gz fatcat-fb3be0f3a44bf8a727f66a08bded28fa24e23e2b.zip |
arabesque import tweaks
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/import_arabesque.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/tests/import_arabesque.py b/python/tests/import_arabesque.py index 516b0ec2..9d74f96c 100644 --- a/python/tests/import_arabesque.py +++ b/python/tests/import_arabesque.py @@ -1,7 +1,7 @@ import json import pytest -from fatcat_tools.importers import ArabesqueMatchImporter, SqlitePusher +from fatcat_tools.importers import ArabesqueMatchImporter, SqlitePusher, JsonLinePusher from fixtures import api @@ -13,6 +13,10 @@ def arabesque_importer(api): def test_arabesque_importer_basic(arabesque_importer): SqlitePusher(arabesque_importer, 'tests/files/arabesque_example.sqlite3', "crawl_result").run() +def test_arabesque_importer_json(arabesque_importer): + with open('tests/files/arabesque_example.json', 'r') as f: + JsonLinePusher(arabesque_importer, f).run() + def test_arabesque_importer(arabesque_importer): last_index = arabesque_importer.api.get_changelog(limit=1)[0].index arabesque_importer.bezerk_mode = True |