diff options
author | 2019-10-25 08:51:25 -0400 | |
---|---|---|
committer | 2019-10-25 08:51:25 -0400 | |
commit | 2b1c18e52c9072f3e8f04984a7a8900537a1e193 (patch) | |
tree | 6e9e45e62b6423fc1c440eafded277dd32f53abf /tests/test_resources.py | |
parent | Fix incorrect type hint for return value (diff) | |
parent | Prepend emoji indicative of success of !eval (#552) (diff) |
Merge branch 'master' into show-trigger-word
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 |