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