summaryrefslogtreecommitdiff
path: root/t/t1300-repo-config.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-21 17:49:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-10-21 17:49:24 (GMT)
commit634b29d2705af2e05d593b75ade2be64033468a5 (patch)
tree4f24501d02783c804ee76e751cba8057a1b8a8cb /t/t1300-repo-config.sh
parent1844f8d591340bb43e4990c96afd0aba424adf48 (diff)
parent008e3cc5d781273053c79d1ccf8cc3bf36086a07 (diff)
downloadgit-634b29d2705af2e05d593b75ade2be64033468a5.zip
git-634b29d2705af2e05d593b75ade2be64033468a5.tar.gz
git-634b29d2705af2e05d593b75ade2be64033468a5.tar.bz2
Merge branch 'mm/maint-config-explicit-bool-display' into maint
* 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 3e140c1..dffccf8 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' \