Skip to content
This repository was archived by the owner on Sep 7, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="python_osrsapi",
version="0.0.3",
version="0.0.4",
author="Chasesc",
description="Oldschool Runescape API wrapper",
long_description=long_description,
Expand Down
1 change: 0 additions & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# TODO
6 changes: 5 additions & 1 deletion tests/test_hiscore_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@

class TestHiscore(unittest.TestCase):
def test_api_length(self):
"""Check to see if the API returns the same number of skills, minigames, and bosses that are mentioned in const.py. If this test fails, the items in const.py need to be updated."""
"""
Check to see if the API returns the same number of skills, minigames, and bosses
that are mentioned in const.py. If this test fails, the items in const.py
need to be updated.
"""
score = Hiscores(username="Lelalt")
expected_num_api_elements = SKILLS_AMT + MINIGAMES_AMT + BOSSES_AMT
api_data = score._get_api_data()
Expand Down