add stub test so coverage doesn't crash
This commit is contained in:
parent
19bd3bfffb
commit
8c94aef6d0
|
@ -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 New Issue