aboutsummaryrefslogtreecommitdiff
path: root/t/podcast.t
diff options
context:
space:
mode:
authorAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2013-02-18 16:48:44 -0500
committerAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2013-02-19 20:22:46 -0500
commit45d58983d2609b43cba8eb5d086812d6042d76a5 (patch)
treeab29426259023e07d17dc84dd865c72b69ba3497 /t/podcast.t
parent546da9bac7135d7d1b02dce0c0eef2209d939fc6 (diff)
downloadikiwiki-45d58983d2609b43cba8eb5d086812d6042d76a5.tar
ikiwiki-45d58983d2609b43cba8eb5d086812d6042d76a5.tar.gz
Rename some posts and fix wrong assumptions.
Diffstat (limited to 't/podcast.t')
-rwxr-xr-xt/podcast.t16
1 files changed, 8 insertions, 8 deletions
diff --git a/t/podcast.t b/t/podcast.t
index a50b7ff2a..77f146871 100755
--- a/t/podcast.t
+++ b/t/podcast.t
@@ -27,25 +27,25 @@ sub simple_podcast {
ok(! system(@command));
my %media_types = (
- 'post' => undef,
+ 'simplepost' => undef,
'piano.mp3' => 'audio/mpeg',
'scroll.3gp' => 'video/3gpp',
'walter.ogg' => 'video/x-theora+ogg',
);
for my $format (qw(atom rss)) {
- my $feed = XML::Feed->parse("$tmp/out/index.$format");
+ my $feed = XML::Feed->parse("$tmp/out/simple/index.$format");
- is($feed->title, 'wiki',
+ is($feed->title, 'simple',
qq{$format feed title});
- is($feed->link, "$baseurl/",
+ is($feed->link, "$baseurl/simple/",
qq{$format feed link});
- is($feed->description, $feed->title,
+ is($feed->description, 'wiki',
qq{$format feed description});
if ('atom' eq $format) {
- is($feed->author, $feed->title,
+ is($feed->author, $feed->description,
qq{$format feed author});
- is($feed->id, "$baseurl/",
+ is($feed->id, $feed->link,
qq{$format feed id});
is($feed->generator, "ikiwiki",
qq{$format feed generator});
@@ -97,7 +97,7 @@ sub single_page_html {
ok(! system("mkdir $tmp"));
ok(! system(@command));
- my $html = "$tmp/out/podcast/index.html";
+ my $html = "$tmp/out/pianopost/index.html";
my $body = _extract_html_content($html, 'content');
like($body, qr/article has content and/m, q{html body text});