mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-10 21:36:43 +01:00
47 lines
901 B
Rust
47 lines
901 B
Rust
use std::process::Command;
|
|
|
|
use assert_cmd::prelude::*;
|
|
use insta::assert_snapshot;
|
|
|
|
#[test]
|
|
fn help() {
|
|
let output = Command::cargo_bin("watchexec")
|
|
.unwrap()
|
|
.arg("--help")
|
|
.output()
|
|
.unwrap();
|
|
|
|
assert!(output.status.success(), "--help returns 0");
|
|
assert_eq!(output.stderr, Vec::<u8>::new(), "--help stderr is empty");
|
|
assert_snapshot!(
|
|
if cfg!(windows) {
|
|
"help_windows"
|
|
} else {
|
|
"help_unix"
|
|
},
|
|
String::from_utf8(output.stdout).unwrap()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn help_short() {
|
|
let long = Command::cargo_bin("watchexec")
|
|
.unwrap()
|
|
.arg("--help")
|
|
.output()
|
|
.unwrap();
|
|
|
|
let short = Command::cargo_bin("watchexec")
|
|
.unwrap()
|
|
.arg("--help")
|
|
.output()
|
|
.unwrap();
|
|
|
|
assert!(short.status.success(), "-h returns 0");
|
|
assert_eq!(short.stderr, Vec::<u8>::new(), "-h stderr is empty");
|
|
assert_eq!(
|
|
long.stdout, short.stdout,
|
|
"--help and -h output are the same"
|
|
);
|
|
}
|