mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
Coverage now includes: session_management, config, knowledge_base, live_chat, persona, tools, chat, conversation, open_api, backup, skills, t2i, cron, plugin, chatui_project, stat, server, auth, subagent, update, log, command
17 lines
497 B
Python
17 lines
497 B
Python
"""Import smoke tests for the subagent dashboard route module.
|
|
|
|
Verifies that all public classes from ``subagent.py`` can be imported
|
|
without errors.
|
|
"""
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# subagent.py -- SubAgentRoute
|
|
# ---------------------------------------------------------------------------
|
|
from astrbot.dashboard.routes.subagent import (
|
|
SubAgentRoute, # noqa: F401
|
|
)
|
|
|
|
|
|
def test_subagent_route_class():
|
|
assert SubAgentRoute is not None
|