Skip to content

Commit 402e3e1

Browse files
tmzullingergitster
authored andcommitted
t9902: test multiple removals via completion.commands
6532f37 ("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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 83b0ecf commit 402e3e1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

t/t9902-completion.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1484,6 +1484,12 @@ test_expect_success 'git --help completion' '
14841484
test_completion "git --help core" "core-tutorial "
14851485
'
14861486

1487+
test_expect_failure 'completion.commands removes multiple commands' '
1488+
test_config completion.commands "-cherry -mergetool" &&
1489+
git --list-cmds=list-mainporcelain,list-complete,config >out &&
1490+
! grep -E "^(cherry|mergetool)$" out
1491+
'
1492+
14871493
test_expect_success 'setup for integration tests' '
14881494
echo content >file1 &&
14891495
echo more >file2 &&

0 commit comments

Comments
 (0)