2016-03-15 23:26:49 +00:00
|
|
|
import unittest
|
|
|
|
from django.test import TestCase,Client
|
2016-03-03 21:55:23 +00:00
|
|
|
|
|
|
|
# Create your tests here.
|
2016-03-15 23:26:49 +00:00
|
|
|
class LoginTestCase(unittest.TestCase):
|
|
|
|
def test_login(self):
|
|
|
|
client = Client()
|
|
|
|
response = client.get("/login")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|