diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-06-01 17:01:20 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-06-01 17:01:20 -0700 |
commit | 57db2db336c08031324e44b2d2880fbd4b6893c9 (patch) | |
tree | f5ad462ab6b3e7d3ac7987049e8c604bd5ee9fbe /tests | |
parent | 08867f9b8de576f0831e6bb9f7b88acddcc31dee (diff) | |
download | chocula-57db2db336c08031324e44b2d2880fbd4b6893c9.tar.gz chocula-57db2db336c08031324e44b2d2880fbd4b6893c9.zip |
'everything' at least partially working
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_directories.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_directories.py b/tests/test_directories.py index 37c6109..90856bc 100644 --- a/tests/test_directories.py +++ b/tests/test_directories.py @@ -19,9 +19,7 @@ def database(issn_db): def test_all(config, database): - for cls in (CrossrefLoader, DoajLoader, EntrezLoader, EzbLoader, - GoldOALoader, NorwegianLoader, OpenAPCLoader, RoadLoader, - SherpaRomeoLoader, SzczepanskiLoader, WikidataLoader): + for cls in ALL_CHOCULA_DIR_CLASSES: loader = cls(config) counts = loader.index_file(database) assert counts['total'] >= 20 |