13 lines
220 B
Python
13 lines
220 B
Python
import unittest
|
|
from django.test import TestCase,Client
|
|
|
|
# Create your tests here.
|
|
class LoginTestCase(unittest.TestCase):
|
|
def test_login(self):
|
|
client = Client()
|
|
response = client.get("/login")
|
|
|
|
|
|
|
|
|
|
|