summaryrefslogtreecommitdiff
path: root/t/t9902-completion.sh
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-04-10 06:57:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-12 17:44:53 (GMT)
commitcdbff7d6ad3c1c3e8c9dbd1cbd5c43fa240982be (patch)
tree144fece1d3cfecd4fd836ca43208887f79d1fa58 /t/t9902-completion.sh
parent7655fa7fa9f58503f21e2354f4a12fd949efa712 (diff)
downloadgit-cdbff7d6ad3c1c3e8c9dbd1cbd5c43fa240982be.zip
git-cdbff7d6ad3c1c3e8c9dbd1cbd5c43fa240982be.tar.gz
git-cdbff7d6ad3c1c3e8c9dbd1cbd5c43fa240982be.tar.bz2
completion: trivial test improvement
Instead of passing a dummy "", let's check if the last character is a space, and then move the _cword accordingly. Apparently we were passing "" all the way to compgen, which fortunately expanded it to nothing. Lets do the right thing though. 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.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
index adc1372..99d5c01 100755
--- a/t/t9902-completion.sh
+++ b/t/t9902-completion.sh
@@ -69,6 +69,7 @@ run_completion ()
local -a COMPREPLY _words
local _cword
_words=( $1 )
+ test "${1: -1}" == ' ' && _words+=('')
(( _cword = ${#_words[@]} - 1 ))
__git_wrap__git_main && print_comp
}
@@ -148,7 +149,7 @@ test_expect_success '__gitcomp - suffix' '
'
test_expect_success 'basic' '
- run_completion "git \"\"" &&
+ run_completion "git " &&
# built-in
grep -q "^add \$" out &&
# script