(
program: PathBuf,
args: [&str; N],
)
| 1457 | } |
| 1458 | |
| 1459 | fn run_command_bytes<const N: usize>( |
| 1460 | program: PathBuf, |
| 1461 | args: [&str; N], |
| 1462 | ) -> Result<Vec<u8>, AppError> { |
| 1463 | run_command(program, args) |
| 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) |
no test coverage detected