summaryrefslogtreecommitdiff
path: root/t/t9902-completion.sh
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@pobox.com>2019-03-20 18:03:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-03-21 02:52:11 (GMT)
commit402e3e1500b3bce5cee9f903f8aa691a8010e76a (patch)
treea669b7fc97a0702406c5f567c029eba103472dc1 /t/t9902-completion.sh
parent83b0ecf333e518867935f6b12c18294a8a7f5017 (diff)
downloadgit-402e3e1500b3bce5cee9f903f8aa691a8010e76a.zip
git-402e3e1500b3bce5cee9f903f8aa691a8010e76a.tar.gz
git-402e3e1500b3bce5cee9f903f8aa691a8010e76a.tar.bz2
t9902: test multiple removals via completion.commands
6532f3740b ("completion: allow to customize the completable command list", 2018-05-20) added the completion.commands config variable. Multiple commands may be added or removed, separated by a space. Demonstrate the failure of multiple removals. Signed-off-by: Todd Zullinger <tmz@pobox.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9902-completion.sh')
-rwxr-xr-xt/t9902-completion.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
index f5e21bf..3d1859f 100755
--- a/t/t9902-completion.sh
+++ b/t/t9902-completion.sh
@@ -1484,6 +1484,12 @@ test_expect_success 'git --help completion' '
test_completion "git --help core" "core-tutorial "
'
+test_expect_failure 'completion.commands removes multiple commands' '
+ test_config completion.commands "-cherry -mergetool" &&
+ git --list-cmds=list-mainporcelain,list-complete,config >out &&
+ ! grep -E "^(cherry|mergetool)$" out
+'
+
test_expect_success 'setup for integration tests' '
echo content >file1 &&
echo more >file2 &&