1 2 3 4 5 6 7
use assert_cmd::Command; #[test] fn help() { let mut command = Command::cargo_bin("stac").unwrap(); command.arg("help").assert().success(); }