diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-24 19:58:51 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-24 19:58:51 -0400 |
commit | b4d2910dda4124031d47c2a51a98536a78cb42e5 (patch) | |
tree | 9a5c93270e5fc5f4a8313dc73daf2027f4e82c49 /t | |
parent | 6e96b5921a6423b03bd974de1cb2d17e6c4a8ecd (diff) |
clean up t/tmp
Diffstat (limited to 't')
-rwxr-xr-x | t/tag.t | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3,7 +3,7 @@ package IkiWiki; use warnings; use strict; -use Test::More tests => 21; +use Test::More tests => 22; BEGIN { use_ok("IkiWiki"); } BEGIN { use_ok("IkiWiki::Render"); } @@ -79,4 +79,8 @@ IkiWiki::gen_autofile("tags/primes.mdwn", \%pages, \@del); is_deeply(\%pages, {}); is_deeply(\@del, ['tags/primes.mdwn']); + +# cleanup +ok(! system("rm -rf t/tmp")); + 1; |