Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new test script t/path-segments.t #10

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
33 changes: 33 additions & 0 deletions t/path-segments.t
@@ -0,0 +1,33 @@
#!perl -w

use strict;
use Test::More 'no_plan';

use URI ();

{
my $u = URI->new("http://www.example.org/a/b/c");

is_deeply [$u->path_segments], ['', qw(a b c)], 'path_segments in list context';
is $u->path_segments, '/a/b/c', 'path_segments in scalar context';

is_deeply [$u->path_segments('', qw(z y x))], ['', qw(a b c)], 'set path_segments in list context';
is $u->path_segments('/i/j/k'), '/z/y/x', 'set path_segments in scalar context';

$u->path_segments('', qw(q r s));
is $u->path_segments, '/q/r/s', 'set path_segments in void context';
}

{
my $u = URI->new("http://www.example.org/abc");
$u->path_segments('', '%', ';', '/');
is $u->path_segments, '/%25/%3B/%2F', 'escaping special characters';
}

{
my $u = URI->new("http://www.example.org/abc;param1;param2");
my @ps = $u->path_segments;
isa_ok $ps[1], 'URI::_segment';
$u->path_segments(@ps);
is $u->path_segments, '/abc;param1;param2', 'dealing with URI segments';
}