""" Author: PH01L Email: phoil@osrsbox.com Website: https://www.osrsbox.com Description: Tests for module: osrsbox.prayers_api.all_prayers Copyright (c) 2019, PH01L ############################################################################### This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ############################################################################### """ import os from pathlib import Path from osrsbox.prayers_api import all_prayers # The current number of prayers being loaded from the db NUMBER_OF_PRAYERS = 29 def test_all_prayers_load_prayers_json(path_to_docs_dir: Path): path_to_prayers_json_dir_no_slash = path_to_docs_dir / "prayers-json" path_to_prayers_json_dir_slash = os.path.join(path_to_docs_dir, "prayers-json", "") for path in (path_to_prayers_json_dir_slash, path_to_prayers_json_dir_no_slash): all_db_prayers = all_prayers.AllPrayers(str(path)) assert len(all_db_prayers.all_prayers) == NUMBER_OF_PRAYERS def test_all_prayers_load_prayers_complete(path_to_docs_dir: Path): path_to_prayers_complete = path_to_docs_dir / "prayers-complete.json" all_db_prayers = all_prayers.AllPrayers(str(path_to_prayers_complete)) assert len(all_db_prayers.all_prayers) == NUMBER_OF_PRAYERS