From 0962470850ed6802b645d5bd6663db60807c8f5b Mon Sep 17 00:00:00 2001 From: Marek Janda Date: Mon, 2 Nov 2015 21:28:29 +0100 Subject: Make absURL properly handle baseURL with path component --- helpers/url_test.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'helpers/url_test.go') diff --git a/helpers/url_test.go b/helpers/url_test.go index c484a99a6..4774accbb 100644 --- a/helpers/url_test.go +++ b/helpers/url_test.go @@ -53,6 +53,8 @@ func TestAbsURL(t *testing.T) { {"/test/2/foo/", "http://base", "http://base/test/2/foo/"}, {"http://abs", "http://base/", "http://abs"}, {"//schemaless", "http://base/", "//schemaless"}, + {"test/2/foo/", "http://base/path", "http://base/path/test/2/foo/"}, + {"/test/2/foo/", "http://base/path", "http://base/test/2/foo/"}, } for _, test := range tests { -- cgit v1.2.3