| 12345678910111213141516171819202122232425 |
- # coding=utf-8
- """
- DDNS Tests Package
- """
- import sys
- import os
- import unittest
- try:
- from unittest.mock import patch, MagicMock, call
- except ImportError: # Python 2
- from mock import patch, MagicMock, call # type: ignore
- __all__ = ["patch", "MagicMock", "unittest", "call"]
- # 添加当前目录到 Python 路径,这样就可以直接导入 test_base
- current_dir = os.path.dirname(__file__)
- if current_dir not in sys.path:
- sys.path.insert(0, current_dir)
- # 添加上级目录到 Python 路径,这样就可以导入 ddns 模块
- parent_dir = os.path.dirname(current_dir)
- if parent_dir not in sys.path:
- sys.path.insert(0, parent_dir)
|