diff options
author | 2020-02-10 21:37:43 +1100 | |
---|---|---|
committer | 2020-02-10 21:37:43 +1100 | |
commit | f34139a2811a3a05f68c1a18afb345c914da35f3 (patch) | |
tree | a8ae0af8510f5dc5bc0b4878ba73d4e34920d08d /tests/test_resources.py | |
parent | Remove trailing comma (diff) | |
parent | Merge pull request #625 from python-discord/emoji-cleanup (diff) |
Merge branch 'master' of https://github.com/python-discord/bot into help-refactor
Conflicts:
bot/cogs/help.py
Diffstat (limited to 'tests/test_resources.py')
-rw-r--r-- | tests/test_resources.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/test_resources.py b/tests/test_resources.py deleted file mode 100644 index bcf124f05..000000000 --- a/tests/test_resources.py +++ /dev/null @@ -1,13 +0,0 @@ -import json -from pathlib import Path - - -def test_stars_valid(): - """Validates that `bot/resources/stars.json` contains a list of strings.""" - - path = Path('bot', 'resources', 'stars.json') - content = path.read_text() - data = json.loads(content) - - for name in data: - assert type(name) is str |