(bin_path, guard_path)
| 43 | run_common([bin_path], env) |
| 44 | |
| 45 | def test_cli_parameter(bin_path, guard_path): |
| 46 | cmd = [ |
| 47 | bin_path, |
| 48 | '--premature-exit-guard-file', |
| 49 | guard_path |
| 50 | ] |
| 51 | run_common(cmd) |
| 52 | |
| 53 | def test_no_crash(bin_path, guard_path): |
| 54 | cmd = [ |
nothing calls this directly
no test coverage detected