From f695bdd843520729aa73cd063c22f1ebd1a01f1f Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 7 Jan 2011 20:11:19 +0000 Subject: [PATCH] tag test: write tag pages into the transient underlay --- t/tag.t | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/t/tag.t b/t/tag.t index f4aac765f..0d360b06e 100755 --- a/t/tag.t +++ b/t/tag.t @@ -3,7 +3,7 @@ package IkiWiki; use warnings; use strict; -use Test::More tests => 22; +use Test::More tests => 23; BEGIN { use_ok("IkiWiki"); } BEGIN { use_ok("IkiWiki::Render"); } @@ -22,7 +22,7 @@ $config{wiki_file_chars} = "-[:alnum:]+/.:_"; $config{userdir} = "users"; $config{tagbase} = "tags"; $config{tag_autocreate} = 1; -$config{tag_autocreate_commit} = 1; +$config{tag_autocreate_commit} = 0; $config{default_pageext} = "mdwn"; $config{wiki_file_prune_regexps} = [qr/^\./]; $config{underlaydirbase} = '.'; @@ -66,7 +66,8 @@ 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; -ok(-s "t/tmp/tags/lucky.mdwn"); +ok(! -s "t/tmp/tags/lucky.mdwn"); +ok(-s "t/tmp/.ikiwiki/transient/tags/lucky.mdwn"); # generating an autofile that already exists does nothing %pages = @del = (); -- 2.44.0