other: add test for battery flag if battery feature is off
This commit is contained in:
parent
c44e860af8
commit
798683b81f
|
@ -168,3 +168,16 @@ fn test_missing_default_widget_type() {
|
|||
"The following required arguments were not provided",
|
||||
));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_battery_flag() {
|
||||
if !cfg!(feature = "battery") {
|
||||
Command::new(get_binary_location())
|
||||
.arg("--battery")
|
||||
.assert()
|
||||
.failure()
|
||||
.stderr(predicate::str::contains(
|
||||
"'--battery' which wasn't expected",
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue