projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e96b59
)
clean up t/tmp
author
Joey Hess
<joey@kitenet.net>
Mon, 24 Jan 2011 23:58:51 +0000
(19:58 -0400)
committer
Joey Hess
<joey@kitenet.net>
Mon, 24 Jan 2011 23:58:51 +0000
(19:58 -0400)
t/tag.t
patch
|
blob
|
history
diff --git
a/t/tag.t
b/t/tag.t
index bd15c4e737edddce9574b56be9237a7776964062..5b0d9c824b6d9efc27faf2ebf0d559644a352ef5 100755
(executable)
--- a/
t/tag.t
+++ b/
t/tag.t
@@
-3,7
+3,7
@@
package IkiWiki;
use warnings;
use strict;
-use Test::More tests => 2
1
;
+use Test::More tests => 2
2
;
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;