X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/b199349ffddce2b8afd89567882e182f7ef9bff1..28c3e5482d7431b7554e6288bb2f9f55fbd274ed:/t/permalink.t diff --git a/t/permalink.t b/t/permalink.t index edb05a81b..7b6b89bea 100755 --- a/t/permalink.t +++ b/t/permalink.t @@ -1,6 +1,7 @@ #!/usr/bin/perl use warnings; use strict; +use Cwd qw(getcwd); use Test::More; my $installed = $ENV{INSTALLED_TESTS}; @@ -11,13 +12,13 @@ if ($installed) { } else { ok(! system("make -s ikiwiki.out")); - @command = qw(perl -I. ./ikiwiki.out + @command = ("perl", "-I".getcwd, qw(./ikiwiki.out --underlaydir=underlays/basewiki --set underlaydirbase=underlays - --templatedir=templates); + --templatedir=templates)); } -ok(! system("rm -rf t/tmp")); +ok(! system("rm -rf t/tmp t/tinyblog/.ikiwiki")); ok(! system("mkdir t/tmp")); ok(! system(@command, qw(--plugin inline --url=http://example.com --cgiurl=http://example.com/ikiwiki.cgi --rss --atom @@ -26,6 +27,5 @@ ok(! system(@command, qw(--plugin inline --url=http://example.com my $guid="http://example.com/post/"; ok(length `egrep '$guid' t/tmp/out/index.rss`); ok(length `egrep '$guid' t/tmp/out/index.atom`); -ok(! system("rm -rf t/tmp t/tinyblog/.ikiwiki")); done_testing();