aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/tests.py
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2019-04-13 16:16:11 +0200
committerGravatar Leon Sandøy <[email protected]>2019-04-13 16:16:11 +0200
commitf29472a56f925127a077c4cadcc13fa852dc665b (patch)
tree34fcafe8e98ab0d9babc87f2118250ecbe697bda /pydis_site/apps/home/tests.py
parentAdded hrefs for the cards (diff)
refactoring slightly to use a class-based view, changing home to main. Ready to write the API search stuff now.
Diffstat (limited to 'pydis_site/apps/home/tests.py')
-rw-r--r--pydis_site/apps/home/tests.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/pydis_site/apps/home/tests.py b/pydis_site/apps/home/tests.py
deleted file mode 100644
index 54fac6e8..00000000
--- a/pydis_site/apps/home/tests.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from django.test import TestCase
-from django_hosts.resolvers import reverse
-
-
-class TestIndexReturns200(TestCase):
- def test_index_returns_200(self):
- url = reverse('index')
- resp = self.client.get(url)
- self.assertEqual(resp.status_code, 200)