aboutsummaryrefslogtreecommitdiffstats
path: root/home/tests.py
blob: a4bb7db6012e618c3f214098068117dc249ad8de (plain) (blame)
1
2
3
4
5
6
7
8
9
from django.shortcuts import reverse
from django.test import TestCase


class TestIndexReturns200(TestCase):
    def test_index_returns_200(self):
        url = reverse('home:index')
        resp = self.client.get(url)
        self.assertEqual(resp.status_code, 200)