(program_path)
| 316 | code = "def fibonacci(n): return n if n <= 1 else fibonacci(n-1) + fibonacci(n-2)" |
| 317 | |
| 318 | def evaluator(program_path): |
| 319 | return {"score": 0.5, "correctness": True} |
| 320 | |
| 321 | # Mock the controller |
| 322 | with unittest.mock.patch('openevolve.api._run_evolution_async') as mock_async: |
nothing calls this directly
no outgoing calls
no test coverage detected