Added test case for silent/interactive combo

pull/974/head
Nils Winkler 2017-05-15 17:24:14 +02:00
parent 99ad1bc3e6
commit 43b62b344a
1 changed files with 8 additions and 0 deletions

View File

@ -68,3 +68,11 @@ function local_teardown {
assert_equal "$md5_orig" "$md5_bak" assert_equal "$md5_orig" "$md5_bak"
} }
@test "install: verify that silent and interactive can not be used at the same time" {
cd "$BASH_IT"
run ./install.sh --silent --interactive
assert_failure
}