Run `atomic ` inside `dir`.
(dir: &Path, args: &[&str])
| 16 | |
| 17 | /// Run `atomic <args>` inside `dir`. |
| 18 | fn atomic(dir: &Path, args: &[&str]) -> Output { |
| 19 | Command::new(ATOMIC_BIN) |
| 20 | .args(args) |
| 21 | .current_dir(dir) |
| 22 | .output() |
| 23 | .expect("run atomic") |
| 24 | } |
| 25 | |
| 26 | /// Combined stdout + stderr as a lossy string, for substring assertions. |
| 27 | fn combined(out: &Output) -> String { |
no outgoing calls
no test coverage detected