Run `atomic ` inside `dir`.
(dir: &Path, args: &[&str])
| 15 | |
| 16 | /// Run `atomic <args>` inside `dir`. |
| 17 | fn atomic(dir: &Path, args: &[&str]) -> Output { |
| 18 | Command::new(ATOMIC_BIN) |
| 19 | .args(args) |
| 20 | .current_dir(dir) |
| 21 | .output() |
| 22 | .expect("run atomic") |
| 23 | } |
| 24 | |
| 25 | /// Initialize a repo with a single recorded file `file.txt` = "v1\n". |
| 26 | fn repo_with_recorded_file() -> TempDir { |
no outgoing calls
no test coverage detected