diff options
author | 2019-10-21 10:01:57 -0400 | |
---|---|---|
committer | 2019-10-21 10:01:57 -0400 | |
commit | bad0f6ff382d9150166da7bcd09c29152c99a3ec (patch) | |
tree | 39a8769be63ec7d59c9ad9cd1439be750e959e3c /tests/test_resources.py | |
parent | Fixing formatting for timedelta. (diff) | |
parent | Merge pull request #517 from python-discord/unittest-migration (diff) |
Merge branch 'master' into master
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 |