use std::process::Command; use assert_cmd::prelude::*; #[test] fn run_with_defaults() -> Result<(), Box>{ Command::cargo_bin("catsay") .expect("binary exists") .assert() .success(); Ok(()) } #[test] fn fail_on_non_existing_file() -> Result<(), Box>{ Command::cargo_bin("catsay") .expect("binary exists") .args(&["-f", "no/such/file.txt"]) .assert() .failure(); Ok(()) }