Create mock model.
(self)
| 297 | |
| 298 | @pytest.fixture |
| 299 | def mock_model(self): |
| 300 | """Create mock model.""" |
| 301 | model = MagicMock() |
| 302 | model.generate.return_value = ['{"q0": "Rewritten"}'] |
| 303 | return model |
| 304 | |
| 305 | @pytest.fixture |
| 306 | def request_builder_cfg(self): |
nothing calls this directly
no outgoing calls
no test coverage detected