aboutsummaryrefslogtreecommitdiff
path: root/t/linkify.t
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-02-20 01:51:23 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-02-20 01:51:23 +0000
commit897ec7cb79e2d46a1dc5d40202e82d9d2fa98025 (patch)
tree4f9669928ff5f05dac1e827af46d0f1fe4b8eb23 /t/linkify.t
parent1081aa1ee5cf8b0bf64b1b0a804091b48b620c39 (diff)
downloadikiwiki-897ec7cb79e2d46a1dc5d40202e82d9d2fa98025.tar
ikiwiki-897ec7cb79e2d46a1dc5d40202e82d9d2fa98025.tar.gz
add test
Diffstat (limited to 't/linkify.t')
-rwxr-xr-xt/linkify.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/linkify.t b/t/linkify.t
index e11c3abba..bc7c0e4a8 100755
--- a/t/linkify.t
+++ b/t/linkify.t
@@ -1,7 +1,7 @@
#!/usr/bin/perl
use warnings;
use strict;
-use Test::More tests => 13;
+use Test::More tests => 14;
BEGIN { use_ok("IkiWiki"); }
@@ -76,6 +76,7 @@ ok(links_to("bar", linkify("foo", "foo", "link to [[some_page|bar]] ok", ["foo",
ok(links_text("some page", linkify("foo", "foo", "link to [[some_page|bar]] ok", ["foo", "bar"])), "named link text");
ok(links_to("bar", linkify("foo", "foo", "link to [[some page|bar]] ok", ["foo", "bar"])), "named link, with whitespace");
ok(links_text("some page", linkify("foo", "foo", "link to [[some page|bar]] ok", ["foo", "bar"])), "named link text, with whitespace");
+ok(links_text("0", linkify("foo", "foo", "link to [[0|bar]] ok", ["foo", "bar"])), "named link to 0");
ok(links_text("Some long, & complex page name.", linkify("foo", "foo", "link to [[Some long, & complex page name.|bar]] ok, and this is not a link]] here", ["foo", "bar"])), "complex named link text");
ok(links_to("foo/bar", linkify("foo/item", "foo", "link to [[bar]] ok", ["foo", "foo/item", "foo/bar"])), "inline page link");
ok(links_to("bar", linkify("foo", "foo", "link to [[bar]] ok", ["foo", "foo/item", "foo/bar"])), "same except not inline");