mirror of
https://github.com/git/git.git
synced 2026-04-04 22:10:07 +02:00
completion: bisect: complete custom terms and related options
git bisect supports the use of custom terms via the --term-(new|bad) and --term-(old|good) options, but the completion code doesn't know about these options or the new subcommands they define. Add support for these options and the custom subcommands by checking for BISECT_TERMS and adding them to the list of subcommands. Add tests. Signed-off-by: Britton Leo Kerin <britton.kerin@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
e1f74dd58b
commit
af8910a2d4
@@ -1321,9 +1321,12 @@ test_expect_success 'git-bisect - when bisecting all subcommands are candidates'
|
||||
test_completion "git bisect " <<-\EOF
|
||||
start Z
|
||||
bad Z
|
||||
custom_new Z
|
||||
custom_old Z
|
||||
new Z
|
||||
good Z
|
||||
old Z
|
||||
terms Z
|
||||
skip Z
|
||||
reset Z
|
||||
visualize Z
|
||||
@@ -1335,6 +1338,18 @@ test_expect_success 'git-bisect - when bisecting all subcommands are candidates'
|
||||
)
|
||||
'
|
||||
|
||||
test_expect_success 'git-bisect - options to terms subcommand are candidates' '
|
||||
(
|
||||
cd git-bisect &&
|
||||
test_completion "git bisect terms --" <<-\EOF
|
||||
--term-bad Z
|
||||
--term-good Z
|
||||
--term-new Z
|
||||
--term-old Z
|
||||
EOF
|
||||
)
|
||||
'
|
||||
|
||||
test_expect_success 'git checkout - completes refs and unique remote branches for DWIM' '
|
||||
test_completion "git checkout " <<-\EOF
|
||||
HEAD Z
|
||||
|
||||
Reference in New Issue
Block a user