]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - t/conflicts.t
Add ikistrap plugin for ikistrap theme.
[git.ikiwiki.info.git] / t / conflicts.t
index 07c392cd3a70ae59992f422124814cd21fdd5b32..ef183c6b6854939a32818c3fd9f655d7211ed64f 100755 (executable)
@@ -2,7 +2,8 @@
 # Tests for bugs relating to conflicting files in the srcdir
 use warnings;
 use strict;
-use Test::More tests => 106;
+use Cwd qw(getcwd);
+use Test::More;
 
 my $installed = $ENV{INSTALLED_TESTS};
 
@@ -13,10 +14,10 @@ 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));
 }
 
 # setup
@@ -142,5 +143,4 @@ ok(! system("mkdir -p $srcdir/foo"));
 ok(! system("touch $srcdir/foo/index.html"));
 setupiki("rawhtml file rendered same as existing page in setup");
 
-# cleanup
-ok(! system("rm -rf t/tmp"));
+done_testing;