add stub test so coverage doesn't crash
This commit is contained in:
parent
19bd3bfffb
commit
8c94aef6d0
10
passbook/core/tests/test_login.py
Normal file
10
passbook/core/tests/test_login.py
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
"""passbook core login test"""
|
||||||
|
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
|
||||||
|
class LoginTest(TestCase):
|
||||||
|
"""Test login"""
|
||||||
|
|
||||||
|
def test(self):
|
||||||
|
self.assertTrue(True)
|
Reference in a new issue