diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-23 21:04:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-23 21:04:11 -0400 |
commit | 8b3d2ab0bcd5b79c30d6e07dd8f363431d94dd72 (patch) | |
tree | cb150e0c08a043668f0014c3ac84cc7149f0c6a8 /t | |
parent | 1dec41278de8b0f33e1e87ec2f36cdd603528fad (diff) | |
download | ikiwiki-8b3d2ab0bcd5b79c30d6e07dd8f363431d94dd72.tar ikiwiki-8b3d2ab0bcd5b79c30d6e07dd8f363431d94dd72.tar.gz |
test suite and partial fix for encoding issues in link renaming
Diffstat (limited to 't')
-rwxr-xr-x | t/renamepage.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/renamepage.t b/t/renamepage.t index ccb33d817..1a607370b 100755 --- a/t/renamepage.t +++ b/t/renamepage.t @@ -1,7 +1,7 @@ #!/usr/bin/perl use warnings; use strict; -use Test::More tests => 15; +use Test::More tests => 20; use Encode; BEGIN { use_ok("IkiWiki"); } @@ -43,3 +43,8 @@ is(try("z", "foo" => "bar", "[[foo#anchor]]"), "[[bar#anchor]]"); # with anchor is(try("z", "foo" => "bar", "[[xxx|foo#anchor]]"), "[[xxx|bar#anchor]]"); # with anchor is(try("z", "foo" => "bar", "[[!moo ]]"), "[[!moo ]]"); # preprocessor directive unchanged is(try("bugs", "bugs/foo" => "wishlist/bar", "[[foo]]"), "[[wishlist/bar]]"); # subpage link +is(try("z", "foo_bar" => "bar", "[[foo_bar]]"), "[[bar]]"); # old link with underscore +is(try("z", "foo" => "bar_foo", "[[foo]]"), "[[bar_foo]]"); # new link with underscore +is(try("z", "foo" => "bar__".ord("(")."__", "[[foo]]"), "[[bar(]]"); # new link with escaped chars +is(try("z", "foo__".ord("(")."__" => "bar", "[[foo(]]"), "[[bar(]]"); # old link with escaped chars +is(try("z", "foo__".ord("(")."__" => "bar__".ord(")")."__", "[[foo(]]"), "[[bar)]]"); # both with escaped chars |