(*_, **__)
| 89 | |
| 90 | # simulate a call being recursive |
| 91 | def call(*_, **__): |
| 92 | return hook_impl._run_legacy('pre-commit', tmpdir, ()) |
| 93 | |
| 94 | with mock.patch.object(subprocess, 'run', call): |
| 95 | with pytest.raises(SystemExit): |
no outgoing calls
no test coverage detected