3 # Test our own home rolled URL canonicalizer. Test the private one
4 # directly because we can't predict what the SVN API is doing to do.
9 use Test
::More
'no_plan';
12 my $canonicalize_url = \
&Git
::SVN
::Utils
::_canonicalize_url_ourselves
;
15 "http://x.com" => "http://x.com",
16 "http://x.com/" => "http://x.com",
17 "http://x.com/foo/bar" => "http://x.com/foo/bar",
18 "http://x.com//foo//bar//" => "http://x.com/foo/bar",
19 "http://x.com/ /%/" => "http://x.com/%20%20/%25",
22 for my $arg (keys %tests) {
23 my $want = $tests{$arg};
25 is
$canonicalize_url->($arg), $want, "canonicalize_url('$arg') => $want";