6 lines
139 B
Python
6 lines
139 B
Python
from django.test import TestCase
|
|
|
|
# Create your tests here.
|
|
class HomeTest(TestCase):
|
|
def test_home(self):
|
|
self.client.get("/") |