diff --git a/tests/integration/autocomplete.bats b/tests/integration/autocomplete.bats new file mode 100644 index 0000000000..48af6f0b41 --- /dev/null +++ b/tests/integration/autocomplete.bats @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +setup_file(){ + load "$PWD/tests/integration/helpers/common" + _common_setup +} + +setup(){ + load "$PWD/tests/integration/helpers/common" + _common_setup +} + +@test "autocomplete output works" { + run $ABRA autocomplete bash + assert_success + + run $ABRA autocomplete fish + assert_success + + run $ABRA autocomplete zsh + assert_success + + run $ABRA autocomplete powershell + assert_success +}