()
| 7 | |
| 8 | @pytest.fixture |
| 9 | def mock_llm_model(): |
| 10 | mock_model = MagicMock() |
| 11 | mock_model.model = "ollama/llama3" |
| 12 | mock_model.__call__ = MagicMock(return_value=["yes"]) |
| 13 | return mock_model |
| 14 | |
| 15 | |
| 16 | @pytest.fixture |
nothing calls this directly
no outgoing calls
no test coverage detected