summaryrefslogtreecommitdiff
path: root/t/t9902-completion.sh
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder@ira.uka.de>2015-05-10 12:50:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-12 22:16:46 (GMT)
commit12bdc880c793e87b5485a1316a3a0c73ef0f1f83 (patch)
tree494f5c30fbcb21d4ac6b1e9efdf48695212539d2 /t/t9902-completion.sh
parente8f9e42829ddb966194f0d38443f321113032bb0 (diff)
downloadgit-12bdc880c793e87b5485a1316a3a0c73ef0f1f83.zip
git-12bdc880c793e87b5485a1316a3a0c73ef0f1f83.tar.gz
git-12bdc880c793e87b5485a1316a3a0c73ef0f1f83.tar.bz2
completion: simplify query for config variables
To get the name of all config variables in a given section we perform a 'git config --get-regex' query for all config variables containing the name of that section, and then filter its output through a case statement to throw away those that though contain but don't start with the given section. Modify the regex to match only at the beginning, so the case statement becomes unnecessary and we can get rid of it. Add a test to check that a match in the middle doesn't fool us. Signed-off-by: SZEDER Gábor <szeder@ira.uka.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9902-completion.sh')
-rwxr-xr-xt/t9902-completion.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
index 07f2478..2ba62fb 100755
--- a/t/t9902-completion.sh
+++ b/t/t9902-completion.sh
@@ -370,6 +370,18 @@ test_expect_success '__git_remotes - list remotes from $GIT_DIR/remotes and from
test_cmp expect actual
'
+test_expect_success '__git_get_config_variables' '
+ cat >expect <<-EOF &&
+ name-1
+ name-2
+ EOF
+ test_config interesting.name-1 good &&
+ test_config interesting.name-2 good &&
+ test_config subsection.interesting.name-3 bad &&
+ __git_get_config_variables interesting >actual &&
+ test_cmp expect actual
+'
+
test_expect_success '__git_pretty_aliases' '
cat >expect <<-EOF &&
author