11 lines
166 B
Python
11 lines
166 B
Python
|
"""passbook core login test"""
|
||
|
|
||
|
from django.test import TestCase
|
||
|
|
||
|
|
||
|
class LoginTest(TestCase):
|
||
|
"""Test login"""
|
||
|
|
||
|
def test(self):
|
||
|
self.assertTrue(True)
|