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