()
| 153 | |
| 154 | #[test] |
| 155 | fn test_wrap_without_args() { |
| 156 | let mut builder = CommandBuilder::new("ls"); |
| 157 | builder.arg("-la").wrap("time", [] as [&str; 0]); |
| 158 | assert_eq!(builder.as_command_line(), "time ls -la"); |
| 159 | } |
| 160 | |
| 161 | #[test] |
| 162 | fn test_multiple_wraps() { |