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