16 lines
211 B
Python
16 lines
211 B
Python
# standard imports
|
|
import unittest
|
|
|
|
# local imports
|
|
from tests.chainqueue_base import TestBase
|
|
|
|
|
|
class TestHelo(TestBase):
|
|
|
|
def test_helo(self):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|