Ultron/ultron/core/tests.py

10 lines
259 B
Python
Raw Normal View History

from django.test import TestCase
from django.urls import reverse
class HomeTests(TestCase):
def test_home_view_status_code(self):
url = reverse("home")
response = self.client.get(url)
self.assertEquals(response.status_code, 200)