(program: PathBuf, args: [&str; N])
| 1464 | } |
| 1465 | |
| 1466 | fn run_command<const N: usize>(program: PathBuf, args: [&str; N]) -> Result<Vec<u8>, AppError> { |
| 1467 | run_command_with_stdin(program, args, None) |
| 1468 | } |
| 1469 | |
| 1470 | fn run_command_with_stdin<const N: usize>( |
| 1471 | program: PathBuf, |
no test coverage detected