aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_resources.py
diff options
context:
space:
mode:
authorGravatar Sebastiaan Zeeff <[email protected]>2019-10-25 15:24:33 +0200
committerGravatar GitHub <[email protected]>2019-10-25 15:24:33 +0200
commitccbc6a6c218056629af0210f101468fa39bc312e (patch)
tree5ade16d0cf00c2cc876c511f73b12237bc31f603 /tests/test_resources.py
parentSubstract one to now calculation (diff)
parentMerge pull request #543 from atmishra/moderator-channel-check (diff)
Merge branch 'master' into reminder-up
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