#[cfg(not(windows))]
use std::fs;
#[cfg(not(windows))]
use qubit_command::{
Command,
CommandRunner,
};
#[cfg(not(windows))]
#[test]
fn test_prepared_command_applies_working_directory_override() {
let working_directory = fs::canonicalize("/tmp").expect("/tmp should resolve");
let output = CommandRunner::new()
.working_directory("/")
.run(Command::shell("pwd").working_directory(&working_directory))
.expect("command should run in per-command working directory");
assert_eq!(
output
.stdout_text()
.expect("pwd output should be valid UTF-8")
.trim(),
working_directory.to_string_lossy(),
);
}