13 lines
301 B
Python
13 lines
301 B
Python
|
from django.test import SimpleTestCase
|
||
|
from django.urls import reverse
|
||
|
|
||
|
|
||
|
class BaseTestCase(SimpleTestCase):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class HomepageViewTestCase(BaseTestCase):
|
||
|
def test_accessible(self):
|
||
|
response = self.client.get(reverse("homepage"))
|
||
|
self.assertEqual(response.status_code, 200)
|