]> sipb.mit.edu Git - ikiwiki.git/blobdiff - t/linkify.t
observations
[ikiwiki.git] / t / linkify.t
index 18b47dcb78cd8b7eb7a75552bc5cf2c89aeb10de..d9c4c0474f04f2128f8eaa7bb73c35c1860530a4 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 use warnings;
 use strict;
-use Test::More tests => 15;
+use Test::More tests => 16;
 
 BEGIN { use_ok("IkiWiki"); }
 
@@ -20,9 +20,12 @@ sub linkify ($$$$) {
                $IkiWiki::pagecase{lc $page}=$page;
                $links{$page}=[];
                $renderedfiles{"$page.mdwn"}=[$page];
+               $destsources{$page}="$page.mdwn";
        }
        %config=IkiWiki::defaultconfig();
        $config{cgiurl}="http://somehost/ikiwiki.cgi";
+       # currently coded for non usedirs mode (TODO: check both)
+       $config{usedirs}=0;
 
        return IkiWiki::linkify($lpage, $page, $content);
 }
@@ -68,6 +71,7 @@ sub links_text ($$) {
 
 
 ok(links_to("bar", linkify("foo", "foo", "link to [[bar]] ok", ["foo", "bar"])), "ok link");
+ok(links_to("bar_baz", linkify("foo", "foo", "link to [[bar_baz]] ok", ["foo", "bar_baz"])), "ok link");
 ok(not_links_to("bar", linkify("foo", "foo", "link to \\[[bar]] ok", ["foo", "bar"])), "escaped link");
 ok(links_to("page=bar", linkify("foo", "foo", "link to [[bar]] ok", ["foo"])), "broken link");
 ok(links_to("bar", linkify("foo", "foo", "link to [[baz]] and [[bar]] ok", ["foo", "baz", "bar"])), "dual links");