Documentation/describe: improve one-line summary
[git.git] / t / Git-SVN / Utils / canonicalize_url.t
blob05795ab636d6885c2aec82512aefd679c736a7e0
1 #!/usr/bin/env perl
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.
6 use strict;
7 use warnings;
9 use Test::More 'no_plan';
11 use Git::SVN::Utils;
12 my $canonicalize_url = \&Git::SVN::Utils::_canonicalize_url_ourselves;
14 my %tests = (
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";