diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-08-05 12:37:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-05 12:37:24 -0700 |
commit | f0df1293acdba9513cae17e2c63b4169f1347371 (patch) | |
tree | e4d9309caa37b13a21ad38147833ed7ee29479bd /t/t1300-repo-config.sh | |
parent | 46068383aa825dfe9026f9255cea07da07e06253 (diff) | |
parent | e77095e8b8d541b41c242aa6dbc8319cb99def5e (diff) | |
download | git-f0df1293acdba9513cae17e2c63b4169f1347371.tar.gz |
Merge branch 'maint-1.6.3' into maint
* maint-1.6.3:
Better usage string for reflog.
hg-to-git: don't import the unused popen2 module
send-email: remove debug trace
config: Keep inner whitespace verbatim
Diffstat (limited to 't/t1300-repo-config.sh')
-rwxr-xr-x | t/t1300-repo-config.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index 8c43dcde8a..83b7294010 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -755,6 +755,11 @@ echo >>result test_expect_success '--null --get-regexp' 'cmp result expect' +test_expect_success 'inner whitespace kept verbatim' ' + git config section.val "foo bar" && + test "z$(git config section.val)" = "zfoo bar" +' + test_expect_success SYMLINKS 'symlinked configuration' ' ln -s notyet myconfig && |