chainqueue/tests/test_basic.py
2021-04-02 10:31:50 +02:00

20 lines
310 B
Python

# standard imports
import logging
import unittest
# test imports
from tests.base import TestBase
logging.basicConfig(level=logging.DEBUG)
logg = logging.getLogger()
class TestBasic(TestBase):
def test_hello(self):
logg.debug('foo')
pass
if __name__ == '__main__':
unittest.main()