Files
timerr/apps/accounts/tests.py
T

8 lines
281 B
Python

from django.test import TestCase
from django.urls import reverse
class HomeRedirectTests(TestCase):
def test_root_redirects_to_task_list(self):
response = self.client.get("/")
self.assertRedirects(response, reverse("task-list"), fetch_redirect_response=False)