2025.11.2

This commit is contained in:
2287551746@qq.com
2025-11-02 18:16:03 +08:00
parent e1edc4cb5c
commit 6c022f9f1e
+21
View File
@@ -0,0 +1,21 @@
# tests/test_basic.py
import unittest
import sys
import os
class TestBasicImports(unittest.TestCase):
def test_core_imports(self):
"""测试核心依赖是否可以导入"""
# 测试必须的依赖
import requests
import dotenv
def test_basic_syntax(self):
"""测试基本语法"""
self.assertTrue(1 + 1 == 2)
if __name__ == '__main__':
unittest.main()