Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2020-12-31 02:29:49 +0300
committerJunio C Hamano <gitster@pobox.com>2021-01-05 02:25:56 +0300
commit0e02bdc17a4d4beca06d5606a1d3020c79676d7f (patch)
treef0eae19830bb4b9cae2e44256d32b743ab84e213 /t/t9902-completion.sh
parent810df0ea8ed00f31d372f3fd90c205d953aea1e6 (diff)
test: completion: add tests for __git_complete
Even though the function was marked as not public, it's already used in the wild. We should at least test basic functionality. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9902-completion.sh')
-rwxr-xr-xt/t9902-completion.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
index a1c4f1f6d4..c0b4380eae 100755
--- a/t/t9902-completion.sh
+++ b/t/t9902-completion.sh
@@ -2380,4 +2380,12 @@ test_expect_success 'sourcing the completion script clears cached --options' '
verbose test -z "$__gitcomp_builtin_notes_edit"
'
+test_expect_success '__git_complete' '
+ unset -f __git_wrap__git_main &&
+ __git_complete foo __git_main &&
+ __git_have_func __git_wrap__git_main &&
+ __git_complete gf _git_fetch &&
+ __git_have_func __git_wrap_git_fetch
+'
+
test_done