7 lines
154 B
Rust
7 lines
154 B
Rust
use assert_cmd::Command;
|
|
|
|
#[test]
|
|
fn cli_shows_help() {
|
|
let mut cmd = Command::cargo_bin("upm").unwrap();
|
|
cmd.arg("--help").assert().success();
|
|
}
|