mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 01:40:15 +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
465 B
Python
17 lines
465 B
Python
"""Import smoke tests for the auth dashboard route module.
|
|
|
|
Verifies that all public classes from ``auth.py`` can be imported
|
|
without errors.
|
|
"""
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# auth.py -- AuthRoute
|
|
# ---------------------------------------------------------------------------
|
|
from astrbot.dashboard.routes.auth import (
|
|
AuthRoute, # noqa: F401
|
|
)
|
|
|
|
|
|
def test_auth_route_class():
|
|
assert AuthRoute is not None
|