diff options
author | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2013-02-17 10:09:05 -0500 |
---|---|---|
committer | Amitai Schlair <schmonz-web-ikiwiki@schmonz.com> | 2013-02-19 20:22:46 -0500 |
commit | 10b6cb6ee5b8b6b81456a5a781216b4b2ec86e52 (patch) | |
tree | d65531c736169599b85f71e1dea1807cf0a4d7b1 /t | |
parent | c9c00b7c25321449035aacd38b1914b76212c9cd (diff) | |
download | ikiwiki-10b6cb6ee5b8b6b81456a5a781216b4b2ec86e52.tar ikiwiki-10b6cb6ee5b8b6b81456a5a781216b4b2ec86e52.tar.gz |
Wrap a long line.
Diffstat (limited to 't')
-rwxr-xr-x | t/podcast.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/podcast.t b/t/podcast.t index 50493aff6..4a5bde6a9 100755 --- a/t/podcast.t +++ b/t/podcast.t @@ -14,8 +14,13 @@ BEGIN { sub simple_podcast { my $baseurl = 'http://example.com'; + my @command = (qw(./ikiwiki.out -plugin inline -rss -atom)); + push @command, qw(-underlaydir=underlays/basewiki); + push @command, qw(-set underlaydirbase=underlays -templatedir=templates); + push @command, "-url=$baseurl", qw(t/tinypodcast t/tmp/out); + ok(! system("mkdir t/tmp")); - ok(! system("./ikiwiki.out -plugin inline -url=$baseurl -rss -atom -underlaydir=underlays/basewiki -set underlaydirbase=underlays -templatedir=templates t/tinypodcast t/tmp/out")); + ok(! system(@command)); my %media_types = ( 'piano.mp3' => 'audio/mpeg', |