diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-10-17 21:37:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-17 21:37:12 -0700 |
commit | e22bb14d8064fe86e956ae500548d4365035f6b2 (patch) | |
tree | ff2983ffda5eaedec6d58742bc53bb29ea6380c4 /t/t1300-repo-config.sh | |
parent | Merge branch 'tc/fetch-leak' (diff) | |
parent | config: display key_delim for config --bool --get-regexp (diff) | |
download | tgif-e22bb14d8064fe86e956ae500548d4365035f6b2.tar.xz |
Merge branch 'mm/maint-config-explicit-bool-display'
* mm/maint-config-explicit-bool-display:
config: display key_delim for config --bool --get-regexp
Diffstat (limited to 't/t1300-repo-config.sh')
-rwxr-xr-x | t/t1300-repo-config.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index 3e140c18f4..dffccf84f8 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -333,6 +333,12 @@ test_expect_success 'get-regexp variable with no value' \ 'git config --get-regexp novalue > output && cmp output expect' +echo 'novalue.variable true' > expect + +test_expect_success 'get-regexp --bool variable with no value' \ + 'git config --bool --get-regexp novalue > output && + cmp output expect' + echo 'emptyvalue.variable ' > expect test_expect_success 'get-regexp variable with empty value' \ |