(self)
| 63 | self.assertEqual(msgs[0]["content"], "msg 0") |
| 64 | |
| 65 | def test_system_prompt(self): |
| 66 | ctx = ConversationContext(config=Config()) |
| 67 | ctx.set_system_prompt("You are helpful.") |
| 68 | self.assertEqual(ctx.system_prompt, "You are helpful.") |
| 69 | |
| 70 | |
| 71 | class TestSystemPrompt(unittest.TestCase): |
nothing calls this directly
no test coverage detected