diff options
author | Ludwig Nussel <ludwig.nussel@suse.de> | 2011-03-04 14:50:56 +0100 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-04 11:23:10 -0400 |
commit | 9ef5139918dbe3f4cf0b3310c76dd31090925406 (patch) | |
tree | 92a5c5a9261d61a7b1a7ba0d81469fd6cb29c6e0 | |
parent | 899b8c80a08ef4bf4ebc177045e86859fbef554f (diff) |
get rid of diag explain again
-rwxr-xr-x | t/autoindex.t | 16 | ||||
-rwxr-xr-x | t/tag.t | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/t/autoindex.t b/t/autoindex.t index b38be8313..d16e44ca8 100755 --- a/t/autoindex.t +++ b/t/autoindex.t @@ -75,8 +75,8 @@ is($autofiles{"deleted.mdwn"}{plugin}, "autoindex"); %pages = (); @del = (); IkiWiki::gen_autofile("deleted.mdwn", \%pages, \@del); -is_deeply(\%pages, {}) || diag explain \%pages; -is_deeply(\@del, []) || diag explain \@del; +is_deeply(\%pages, {}); +is_deeply(\@del, []); ok(! -f "t/tmp/deleted.mdwn"); # this page is tried as an autofile, but because it'll be in @del, it's not @@ -86,8 +86,8 @@ ok(! exists $wikistate{autoindex}{autofile}{"gone.mdwn"}); @del = ("gone.mdwn"); is($autofiles{"gone.mdwn"}{plugin}, "autoindex"); IkiWiki::gen_autofile("gone.mdwn", \%pages, \@del); -is_deeply(\%pages, {}) || diag explain \%pages; -is_deeply(\@del, ["gone.mdwn"]) || diag explain \@del; +is_deeply(\%pages, {}); +is_deeply(\@del, ["gone.mdwn"]); ok(! -f "t/tmp/gone.mdwn"); # this page does not exist and has no reason to be re-created, but we no longer @@ -116,8 +116,8 @@ ok(! exists $wikistate{autoindex}{autofile}{"tags.mdwn"}); @del = (); is($autofiles{"tags.mdwn"}{plugin}, "autoindex"); IkiWiki::gen_autofile("tags.mdwn", \%pages, \@del); -is_deeply(\%pages, {"t/tmp/tags" => 1}) || diag explain \%pages; -is_deeply(\@del, []) || diag explain \@del; +is_deeply(\%pages, {"t/tmp/tags" => 1}); +is_deeply(\@del, []); ok(! -s "t/tmp/tags.mdwn"); ok(-s "t/tmp/.ikiwiki/transient/tags.mdwn"); @@ -127,8 +127,8 @@ ok(! exists $wikistate{autoindex}{autofile}{"attached.mdwn"}); @del = (); is($autofiles{"attached.mdwn"}{plugin}, "autoindex"); IkiWiki::gen_autofile("attached.mdwn", \%pages, \@del); -is_deeply(\%pages, {"t/tmp/attached" => 1}) || diag explain \%pages; -is_deeply(\@del, []) || diag explain \@del; +is_deeply(\%pages, {"t/tmp/attached" => 1}); +is_deeply(\@del, []); ok(-s "t/tmp/.ikiwiki/transient/attached.mdwn"); 1; @@ -65,8 +65,8 @@ my (%pages, @del); IkiWiki::gen_autofile("tags/lucky.mdwn", \%pages, \@del); ok(! -s "t/tmp/tags/lucky.mdwn"); ok(-s "t/tmp/.ikiwiki/transient/tags/lucky.mdwn"); -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, []); # generating an autofile that already exists does nothing %pages = @del = (); |