summaryrefslogtreecommitdiff
path: root/t/t9901-git-web--browse.sh
diff options
context:
space:
mode:
authorPat Thoyts <patthoyts@users.sourceforge.net>2011-10-15 14:05:17 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-10-16 03:17:32 (GMT)
commitf64943d242d3b0fff40684d09033f17bb9747a38 (patch)
tree04945ae2c4ab48362f460061c912d510230f2034 /t/t9901-git-web--browse.sh
parent13d24b018f348401cceca45da5c0dd6d17411268 (diff)
downloadgit-f64943d242d3b0fff40684d09033f17bb9747a38.zip
git-f64943d242d3b0fff40684d09033f17bb9747a38.tar.gz
git-f64943d242d3b0fff40684d09033f17bb9747a38.tar.bz2
t9901: fix line-ending dependency on windows
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9901-git-web--browse.sh')
-rwxr-xr-xt/t9901-git-web--browse.sh27
1 files changed, 12 insertions, 15 deletions
diff --git a/t/t9901-git-web--browse.sh b/t/t9901-git-web--browse.sh
index 7906e5d..b0a6bad 100755
--- a/t/t9901-git-web--browse.sh
+++ b/t/t9901-git-web--browse.sh
@@ -7,31 +7,32 @@ This test checks that git web--browse can handle various valid URLs.'
. ./test-lib.sh
+test_web_browse () {
+ # browser=$1 url=$2
+ git web--browse --browser="$1" "$2" >actual &&
+ tr -d '\015' <actual >text &&
+ test_cmp expect text
+}
+
test_expect_success \
'URL with an ampersand in it' '
echo http://example.com/foo\&bar >expect &&
git config browser.custom.cmd echo &&
- git web--browse --browser=custom \
- http://example.com/foo\&bar >actual &&
- test_cmp expect actual
+ test_web_browse custom http://example.com/foo\&bar
'
test_expect_success \
'URL with a semi-colon in it' '
echo http://example.com/foo\;bar >expect &&
git config browser.custom.cmd echo &&
- git web--browse --browser=custom \
- http://example.com/foo\;bar >actual &&
- test_cmp expect actual
+ test_web_browse custom http://example.com/foo\;bar
'
test_expect_success \
'URL with a hash in it' '
echo http://example.com/foo#bar >expect &&
git config browser.custom.cmd echo &&
- git web--browse --browser=custom \
- http://example.com/foo#bar >actual &&
- test_cmp expect actual
+ test_web_browse custom http://example.com/foo#bar
'
test_expect_success \
@@ -43,9 +44,7 @@ test_expect_success \
EOF
chmod +x "fake browser" &&
git config browser.w3m.path "`pwd`/fake browser" &&
- git web--browse --browser=w3m \
- http://example.com/foo >actual &&
- test_cmp expect actual
+ test_web_browse w3m http://example.com/foo
'
test_expect_success \
@@ -58,9 +57,7 @@ test_expect_success \
done
}
f" &&
- git web--browse --browser=custom \
- http://example.com/foo >actual &&
- test_cmp expect actual
+ test_web_browse custom http://example.com/foo
'
test_done