aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_resources.py
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2019-10-25 10:12:23 -0700
committerGravatar GitHub <[email protected]>2019-10-25 10:12:23 -0700
commite68e9ef9cc6d6670a1c6b6a712fe87be1f33d60b (patch)
treecccbc64ce0b9056efb7b2c07cbec9826d77400ff /tests/test_resources.py
parentRemove bold tag when no channel is available (diff)
parentMerge pull request #501 from mathsman5133/reddit-makeover (diff)
Merge branch 'master' into compact_free
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