mod fixtures; use assert_cmd::prelude::*; use clap::{crate_name, crate_version}; use fixtures::Error; use std::process::Command; #[test] /// Show help and exit. fn help_shows() -> Result<(), Error> { Command::cargo_bin("miniserve")? .arg("-h") .assert() .success(); Ok(()) } #[test] /// Show version and exit. fn version_shows() -> Result<(), Error> { Command::cargo_bin("miniserve")? .arg("-V") .assert() .success() .stdout(format!("{} {}\n", crate_name!(), crate_version!())); Ok(()) }