diff options
author | Frank Lichtenheld <frank@lichtenheld.de> | 2007-06-25 16:03:54 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-26 18:20:47 -0700 |
commit | b69ba460bb0710b2af8a20b4b0d62233f29401ec (patch) | |
tree | eb84fa18ed8c179ef2467cfcf76f3eb5a4de75e1 /t | |
parent | e373bb73889e15452b622df67465b77803876aa6 (diff) | |
download | git-b69ba460bb0710b2af8a20b4b0d62233f29401ec.tar.gz git-b69ba460bb0710b2af8a20b4b0d62233f29401ec.tar.xz |
config: Change output of --get-regexp for valueless keys
Print no space after the name of a key without value.
Otherwise keys without values are printed exactly the
same as keys with empty values.
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-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 3f3fd2d7f..f1a78b19a 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -283,6 +283,12 @@ EOF test_expect_success 'get variable with no value' \ 'git-config --get novalue.variable ^$' +echo novalue.variable > expect + +test_expect_success 'get-regexp variable with no value' \ + 'git-config --get-regexp novalue > output && + cmp output expect' + git-config > output 2>&1 test_expect_success 'no arguments, but no crash' \ |