()
| 9 | |
| 10 | @pytest.fixture |
| 11 | def mock_openai_client(): |
| 12 | m = MockOpenAIClient() |
| 13 | m.set_response( |
| 14 | create_mock_response({"role": "assistant", "content": DEFAULT_RESPONSE_CONTENT}) |
| 15 | ) |
| 16 | return m |
| 17 | |
| 18 | |
| 19 | def test_run_with_simple_message(mock_openai_client: MockOpenAIClient): |
nothing calls this directly
no test coverage detected
searching dependent graphs…