(ext, files, **kwargs)
| 2081 | mock_ext.return_value = MagicMock() |
| 2082 | |
| 2083 | def _fake_run(ext, files, **kwargs): |
| 2084 | on_result = kwargs.get("on_result") |
| 2085 | if on_result: |
| 2086 | on_result(gz_path, entry) |
| 2087 | return BatchResult() |
| 2088 | |
| 2089 | mock_run.side_effect = _fake_run |
| 2090 |
nothing calls this directly
no test coverage detected