diff --git a/tests/test_read_info.py b/tests/test_read_info.py index 7162e0e..379d52a 100644 --- a/tests/test_read_info.py +++ b/tests/test_read_info.py @@ -5,9 +5,10 @@ # Author: xaoyaoo # Date: 2023/10/21 # ------------------------------------------------------------------------------- - from pywxdump.wx_info import read_info from pywxdump import VERSION_LIST_PATH, VERSION_LIST -result = read_info(VERSION_LIST, is_logging=True) # 读取微信信息 +def test_read_info(): + result = read_info(VERSION_LIST, is_logging=True) # 读取微信信息 + assert result is not None \ No newline at end of file