cic-cli/tests/test_meta.py

26 lines
403 B
Python
Raw Normal View History

2021-10-11 12:27:51 +02:00
# standard imports
import unittest
import logging
# external imports
from hexathon import strip_0x
# local imports
from cic.output import KVWriter
# test imports
from tests.base_cic import TestCICBase
logging.basicConfig(level=logging.DEBUG)
logg = logging.getLogger()
class TestCICMeta(TestCICBase):
def test_meta(self):
pass
if __name__ == '__main__':
unittest.main()