diff --git a/test/install/install.bats b/test/install/install.bats index 70862c2a..2d0b21e6 100644 --- a/test/install/install.bats +++ b/test/install/install.bats @@ -68,3 +68,11 @@ function local_teardown { 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 +}