aboutsummaryrefslogtreecommitdiff
path: root/t/pagename.t
blob: 488e341fa2daf05c0d1f07233fdd93fec18ac1eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl
use warnings;
use strict;
use Test::More tests => 8;

BEGIN { use_ok("IkiWiki"); }

# Used internally.
$IkiWiki::hooks{htmlize}{mdwn}={};
$IkiWiki::hooks{htmlize}{txt}={keepextension => 1};

is(pagename("foo.mdwn"), "foo");
is(pagename("foo/bar.mdwn"), "foo/bar");

# bare files get the full filename as page name
is(pagename("foo.png"), "foo.png");
is(pagename("foo/bar.png"), "foo/bar.png");
is(pagename("foo"), "foo");

# keepextension preserves the extension in the page name
is(pagename("foo.txt"), "foo.txt");
is(pagename("foo/bar.txt"), "foo/bar.txt");