other: add test for battery flag if battery feature is off

This commit is contained in:
ClementTsang 2022-05-01 17:15:54 -04:00
parent c44e860af8
commit 798683b81f

View file

@ -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",
));
}
}