blob: c021eb7e80314b489d5d4d325a073a4ce16d78dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
mod helpers;
use helpers::*;
#[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(())
}
|