aboutsummaryrefslogtreecommitdiffstats
path: root/home/tests.py
blob: 54fac6e82bc987099d0402722faca41cc563c972 (plain) (blame)
1
2
3
4
5
6
7
8
9
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)