diff options
author | 2021-05-23 10:51:55 +0200 | |
---|---|---|
committer | 2021-05-23 10:51:55 +0200 | |
commit | 7c67ea311eebeb5273d02469295fa4218348e213 (patch) | |
tree | 5b0264bc163e6d11334b355e943e9d9eed155fa1 /pydis_site/apps/resources | |
parent | Remove www from the URL for inferential thinking. (diff) |
Test boilerplate
Diffstat (limited to 'pydis_site/apps/resources')
-rw-r--r-- | pydis_site/apps/resources/tests/test_resources.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pydis_site/apps/resources/tests/test_resources.py b/pydis_site/apps/resources/tests/test_resources.py new file mode 100644 index 00000000..81638e2f --- /dev/null +++ b/pydis_site/apps/resources/tests/test_resources.py @@ -0,0 +1,9 @@ +from django.test import TestCase + + +class TestResources(TestCase): + """Test our resource filtering systems.""" + + def test_utils_to_retrieve_tags(self): + """Test that the utils that retrieve the tags work as intended.""" + pass |