15 lines
205 B
Python
15 lines
205 B
Python
|
# standard imports
|
||
|
import unittest
|
||
|
|
||
|
# local imports
|
||
|
from tests.base import TestBase
|
||
|
|
||
|
|
||
|
class TestBasic(TestBase):
|
||
|
|
||
|
def test_basic(self):
|
||
|
pass
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|