test_dispatcher.py 205 B

12345678910
  1. """测试 Dispatcher"""
  2. import pytest
  3. from tool_agent.router.dispatcher import Dispatcher
  4. class TestDispatcher:
  5. def test_dispatcher_init(self):
  6. d = Dispatcher()
  7. assert d is not None