File size: 401 Bytes
00bd2b1 |
1 2 3 4 5 6 7 8 9 10 |
# tests/test_chat_engine.py
import unittest
from src.chat_engine import build_expert_prompt
from src.config import TOPIC_REGISTRY
class TestChatEngine(unittest.TestCase):
def test_build_expert_prompt(self):
topic_spec = TOPIC_REGISTRY["Python"]
prompt = build_expert_prompt(topic_spec, "What is a decorator?")
self.assertIn("Dr. Data", prompt.messages[0].content) |