()
| 173 | |
| 174 | #[test] |
| 175 | fn test_wrap_with_spaces() { |
| 176 | let mut builder = CommandBuilder::new("echo"); |
| 177 | builder.arg("hello world").wrap("bash", ["-c"]); |
| 178 | assert_eq!(builder.as_command_line(), "bash -c echo 'hello world'"); |
| 179 | } |
| 180 | |
| 181 | #[test] |
| 182 | fn test_wrap_and_build() { |