7 lines
126 B
Python
7 lines
126 B
Python
|
from tests import TestCase
|
||
|
|
||
|
|
||
|
class BasicTestCase(TestCase):
|
||
|
def test_basic_assertion(self):
|
||
|
self.assertTrue(True)
|