#!/usr/bin/env python # -*- encoding: utf-8 -*- """ @Version: 1.0 @Python Version:3.6.6 @Author: wenhx8 @File: test_flask_wrapper @Time: 2019/1/7 007 22:01 @Description: 测试代码 """ from unittest import TestCase, main from cucc_common_pkg.cfginfohandle import CfgInfoHandle import os class TestUtility(TestCase): r''' TestUtility ''' def test_func(self): r''' Returns: ''' lk = CfgInfoHandle() print(lk.get_redis_info()) self.assertTrue(1 == 1) if __name__ == '__main__': main()