aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_resources.py
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-10-24 13:46:31 +1000
committerGravatar GitHub <[email protected]>2019-10-24 13:46:31 +1000
commitcb50a45ddb52da3d7db1a09251c8e0ec4dbe31b1 (patch)
treedbe06ea821a6973906d4235eebb460e6152f9e36 /tests/test_resources.py
parentPrepend emoji indicative of success of !eval (diff)
parentMerge pull request #547 from python-discord/#540-dont-show-infraction-total (diff)
Merge branch 'master' into eval-emojis
Diffstat (limited to 'tests/test_resources.py')
-rw-r--r--tests/test_resources.py13
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