diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-08-31 16:23:35 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-31 16:23:35 -0700 |
commit | d7cc7c971f58091a2f2a15d2dca0fab0bd2ca310 (patch) | |
tree | 3d626a01b1868e78e5a80ba58cadfcbdd9a608b3 /t | |
parent | Merge branch 'jn/paginate-fix' (diff) | |
parent | Do not unquote + into ' ' in URLs (diff) | |
download | tgif-d7cc7c971f58091a2f2a15d2dca0fab0bd2ca310.tar.xz |
Merge branch 'tr/maint-no-unquote-plus'
* tr/maint-no-unquote-plus:
Do not unquote + into ' ' in URLs
Diffstat (limited to 't')
-rwxr-xr-x | t/t5601-clone.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh index 8abb71afcd..4431dfd02b 100755 --- a/t/t5601-clone.sh +++ b/t/t5601-clone.sh @@ -178,8 +178,14 @@ test_expect_success 'clone respects global branch.autosetuprebase' ' test_expect_success 'respect url-encoding of file://' ' git init x+y && - test_must_fail git clone "file://$PWD/x+y" xy-url && - git clone "file://$PWD/x%2By" xy-url + git clone "file://$PWD/x+y" xy-url-1 && + git clone "file://$PWD/x%2By" xy-url-2 +' + +test_expect_success 'do not query-string-decode + in URLs' ' + rm -rf x+y && + git init "x y" && + test_must_fail git clone "file://$PWD/x+y" xy-no-plus ' test_expect_success 'do not respect url-encoding of non-url path' ' |