diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-05-22 12:41:53 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-05-22 12:41:54 -0700 |
commit | 935d93764466c52cae7218c13bde93043bd609bd (patch) | |
tree | 83d3c52da002deb9779ae05a1c96049404af872a /t | |
parent | faa4b2ecbb6ea5fdc8d685343c4985dfb97f4dbf (diff) | |
parent | 12bdc880c793e87b5485a1316a3a0c73ef0f1f83 (diff) | |
download | git-935d93764466c52cae7218c13bde93043bd609bd.tar.gz |
Merge branch 'sg/completion-config'
Code clean-up for completion script (in contrib/).
* sg/completion-config:
completion: simplify query for config variables
completion: add a helper function to get config variables
Diffstat (limited to 't')
-rwxr-xr-x | t/t9902-completion.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh index 4a14a5892e..2ba62fbc17 100755 --- a/t/t9902-completion.sh +++ b/t/t9902-completion.sh @@ -370,6 +370,40 @@ 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 + hash + EOF + test_config pretty.author "%an %ae" && + test_config pretty.hash %H && + __git_pretty_aliases >actual && + test_cmp expect actual +' + +test_expect_success '__git_aliases' ' + cat >expect <<-EOF && + ci + co + EOF + test_config alias.ci commit && + test_config alias.co checkout && + __git_aliases >actual && + test_cmp expect actual +' + test_expect_success 'basic' ' run_completion "git " && # built-in |