diff options
author | Simon McVittie <smcv@debian.org> | 2010-12-28 13:39:26 +0000 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2010-12-28 13:41:59 +0000 |
commit | eeb0ec1862c855378a2d53701464304111a7ff05 (patch) | |
tree | 0df98c123faadc30bc00e6ec6493b9f8aa5f3879 | |
parent | 2415a7298b63b938c88c079543705e5db39827ee (diff) | |
download | ikiwiki-eeb0ec1862c855378a2d53701464304111a7ff05.tar ikiwiki-eeb0ec1862c855378a2d53701464304111a7ff05.tar.gz |
tag test: assert that the only autofiles are the ones we want
-rwxr-xr-x | t/tag.t | 3 |
1 files changed, 2 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"); } @@ -58,6 +58,7 @@ IkiWiki::Plugin::tag::preprocess_tag(page => "seven", numbers => undef, primes = is($autofiles{"tags/lucky.mdwn"}{plugin}, "tag"); is($autofiles{"tags/numbers.mdwn"}{plugin}, "tag"); is($autofiles{"tags/primes.mdwn"}{plugin}, "tag"); +is_deeply([sort keys %autofiles], [qw(tags/lucky.mdwn tags/numbers.mdwn tags/primes.mdwn)]); ok(!-e "t/tmp/tags/lucky.mdwn"); my (%pages, @del); |