summaryrefslogtreecommitdiff
path: root/t/t1300-repo-config.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2011-10-17 21:37:12 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2011-10-17 21:37:12 -0700
commite22bb14d8064fe86e956ae500548d4365035f6b2 (patch)
treeff2983ffda5eaedec6d58742bc53bb29ea6380c4 /t/t1300-repo-config.sh
parentMerge branch 'tc/fetch-leak' (diff)
parentconfig: display key_delim for config --bool --get-regexp (diff)
downloadtgif-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-xt/t1300-repo-config.sh6
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' \