summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-05-30 12:51:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-05-30 12:51:27 (GMT)
commitb2fd6592943db80ef9bfccbf55d65a39268d76ed (patch)
tree35b12601a1261a3654076ae4f70debd0c3c19bf6 /t
parent0821b73063a6d4cfd2f61619b7afe01ce9c6d99e (diff)
parent17b8a2d6cdfc359b1a7de6dd215dc3c32ab1dbfe (diff)
downloadgit-b2fd6592943db80ef9bfccbf55d65a39268d76ed.zip
git-b2fd6592943db80ef9bfccbf55d65a39268d76ed.tar.gz
git-b2fd6592943db80ef9bfccbf55d65a39268d76ed.tar.bz2
Merge branch 'jk/config-blob-sans-repo'
Error codepath fix. * jk/config-blob-sans-repo: config: die when --blob is used outside a repository
Diffstat (limited to 't')
-rwxr-xr-xt/t1307-config-blob.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t1307-config-blob.sh b/t/t1307-config-blob.sh
index eed31ff..37dc689 100755
--- a/t/t1307-config-blob.sh
+++ b/t/t1307-config-blob.sh
@@ -73,4 +73,8 @@ test_expect_success 'can parse blob ending with CR' '
test_cmp expect actual
'
+test_expect_success 'config --blob outside of a repository is an error' '
+ test_must_fail nongit git config --blob=foo --list
+'
+
test_done