aboutsummaryrefslogtreecommitdiffstats
path: root/skate/url_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'skate/url_test.go')
-rw-r--r--skate/url_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/skate/url_test.go b/skate/url_test.go
index 8f50162..e1e9419 100644
--- a/skate/url_test.go
+++ b/skate/url_test.go
@@ -125,6 +125,10 @@ func TestSanitizeURL(t *testing.T) {
{`httpwww.sun.com`, `http://www.sun.com`},
{`httpswww.unos.org`, `http://www.unos.org`},
{`ics.uci.edu/pub/ietf/`, `http://ics.uci.edu/pub/ietf/`},
+ {`ISSN-2177-4129periodicos.ufpel.edu.br/ojs2/index.php/Memoriahttp://dx.doi.org/10.15210/rmr.v8i14.7485`,
+ `http://dx.doi.org/10.15210/rmr.v8i14.7485`},
+ {`Shttp://hdl.handle.net/1765/1163`,
+ `http://hdl.handle.net/1765/1163`},
}
for _, c := range cases {
out := SanitizeURL(c.in)