(command_with_args: &[&str])
| 85 | } |
| 86 | |
| 87 | fn exec(command_with_args: &[&str]) -> Result<()> { |
| 88 | exec_impl(command_with_args, false)?; |
| 89 | Ok(()) |
| 90 | } |
| 91 | |
| 92 | fn exec_and_capture(command_with_args: &[&str]) -> Result<String> { |
| 93 | exec_impl(command_with_args, true) |
no test coverage detected