#!/usr/bin/perl --
use strict;
use warnings;
use URI;
Main( @ARGV );
exit( 0 );
sub Main {
ABT();
}
sub ABT {
require Test::More;
Test::More->import(qw' no_plan ');
my $base = URI->new("http://a/d/../e/");
my $uri = URI->new("http://a/y");
is( $base, ( "http://a/d/../e/" ) x 2 );
is( $base->path, ( "/d/../e/" ) x 2 );
is( $uri, ( "http://a/y" ) x 2 );
is( $uri->path, ( "/y" ) x 2 );
diag("should the following be equivalent??");
is( $uri->rel($base), "??", q~$uri->rel($base)~ );
is( URI->new( $uri->path )->rel( $base->path ),
$uri->rel($base), q~URI->new( $uri->path )->rel( $base->path )
+~ );
is( URI->new("/y")->rel("/d/../e/"),
$uri->rel($base), q~URI->new("/y")->rel("/d/../e/") ~ );
}
__END__
ok 1 - http://a/d/../e/
ok 2 - /d/../e/
ok 3 - http://a/y
ok 4 - /y
# should the following be equivalent??
not ok 5 - $uri->rel($base)
# Failed test '$uri->rel($base)'
# at - line 27.
# got: '../../../y'
# expected: '??'
not ok 6 - URI->new( $uri->path )->rel( $base->path )
# Failed test 'URI->new( $uri->path )->rel( $base->path )'
# at - line 28.
# got: '/y'
# expected: '../../../y'
not ok 7 - URI->new("/y")->rel("/d/../e/")
# Failed test 'URI->new("/y")->rel("/d/../e/") '
# at - line 30.
# got: '/y'
# expected: '../../../y'
1..7
# Looks like you failed 3 tests of 7.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|