remove more test diag stuff that needs a newer Test::More than debian stable's

master
Joey Hess 2011-01-24 17:23:58 -04:00
parent f6b442aa2e
commit 6e96b5921a
1 changed files with 6 additions and 6 deletions

12
t/tag.t
View File

@ -62,21 +62,21 @@ is($autofiles{"tags/primes.mdwn"}{plugin}, "tag");
ok(!-e "t/tmp/tags/lucky.mdwn");
my (%pages, @del);
IkiWiki::gen_autofile("tags/lucky.mdwn", \%pages, \@del);
is_deeply(\%pages, {"t/tmp/tags/lucky" => 1}) || diag explain \%pages;
is_deeply(\@del, []) || diag explain \@del;
is_deeply(\%pages, {"t/tmp/tags/lucky" => 1});
is_deeply(\@del, []);
ok(-s "t/tmp/tags/lucky.mdwn");
# generating an autofile that already exists does nothing
%pages = @del = ();
IkiWiki::gen_autofile("tags/numbers.mdwn", \%pages, \@del);
is_deeply(\%pages, {}) || diag explain \%pages;
is_deeply(\@del, []) || diag explain \@del;
is_deeply(\%pages, {});
is_deeply(\@del, []);
# generating an autofile that we just deleted does nothing
%pages = ();
@del = ('tags/primes.mdwn');
IkiWiki::gen_autofile("tags/primes.mdwn", \%pages, \@del);
is_deeply(\%pages, {}) || diag explain \%pages;
is_deeply(\@del, ['tags/primes.mdwn']) || diag explain \@del;
is_deeply(\%pages, {});
is_deeply(\@del, ['tags/primes.mdwn']);
1;