[PATCH 1/2] test: completion: add tests for __git_complete
From: Felipe Contreras <hidden>
Date: 2020-12-28 19:24:02
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Felipe Contreras <hidden>
Date: 2020-12-28 19:24:02
Subsystem:
the rest · Maintainer:
Linus Torvalds
Signed-off-by: Felipe Contreras <redacted> --- t/t9902-completion.sh | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
index a1c4f1f6d4..2e59fe4de0 100755
--- a/t/t9902-completion.sh
+++ b/t/t9902-completion.sh@@ -2380,4 +2380,11 @@ test_expect_success 'sourcing the completion script clears cached --options' ' verbose test -z "$__gitcomp_builtin_notes_edit" ' +test_expect_success '__git_complete' ' + __git_complete foo __git_main && + test "$(type -t __git_wrap__git_main)" == function && + __git_complete gf _git_fetch && + test "$(type -t __git_wrap_git_fetch)" == function +' + test_done
--
2.30.0.rc2