Add tests for ConfigManager

This commit is contained in:
thePR0M3TH3AN
2025-06-28 21:46:08 -04:00
parent d5e57593be
commit 5b7b18b8f4
3 changed files with 110 additions and 1 deletions

View File

@@ -5,9 +5,18 @@ import traceback
try:
from .manager import PasswordManager
logging.info("PasswordManager module imported successfully.")
except Exception as e:
logging.error(f"Failed to import PasswordManager module: {e}")
logging.error(traceback.format_exc()) # Log full traceback
__all__ = ['PasswordManager']
try:
from .config_manager import ConfigManager
logging.info("ConfigManager module imported successfully.")
except Exception as e:
logging.error(f"Failed to import ConfigManager module: {e}")
logging.error(traceback.format_exc())
__all__ = ["PasswordManager", "ConfigManager"]