9 lines
288 B
Python
9 lines
288 B
Python
from django.test import TestCase
|
|
from django.http import HttpRequest
|
|
from lists.views import home_page
|
|
|
|
# Create your tests here.
|
|
class HomePageTest(TestCase):
|
|
def test_uses_home_page_template(self):
|
|
response = self.client.get("/")
|
|
self.assertTemplateUsed(response, "home.html") |