diff options
| author | 2019-11-28 10:28:55 +0000 | |
|---|---|---|
| committer | 2019-11-28 10:28:55 +0000 | |
| commit | 61df1d6ea86151ade775fced4cfaa932688d140f (patch) | |
| tree | b937e24718478c6cf1a6195b0264bdf825212d3c /tests/test_resources.py | |
| parent | Expand spoilers to match multiple interpretations (diff) | |
| parent | Relock to d.py 1.2.5 due to API breaking change for emoji. (diff) | |
Merge branch 'master' into spoiler-check
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 |