diff options
author | Joey Hess <joey@kitenet.net> | 2010-04-21 22:04:03 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-04-21 22:04:03 -0400 |
commit | 13325317a32529e02769baa5e61e6c401c675b27 (patch) | |
tree | 9a40f1c6212c5386790a03a4e3f02ef38be5b7a6 /t | |
parent | 09ff797682fd89380a4a71564ec02649af99851e (diff) | |
download | ikiwiki-13325317a32529e02769baa5e61e6c401c675b27.tar ikiwiki-13325317a32529e02769baa5e61e6c401c675b27.tar.gz |
backlink influence data seems ok
Diffstat (limited to 't')
-rwxr-xr-x | t/pagespec_match_list.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/pagespec_match_list.t b/t/pagespec_match_list.t index 05dc012fe..ee5d60f88 100755 --- a/t/pagespec_match_list.t +++ b/t/pagespec_match_list.t @@ -1,7 +1,7 @@ #!/usr/bin/perl use warnings; use strict; -use Test::More tests => 94; +use Test::More tests => 107; BEGIN { use_ok("IkiWiki"); } @@ -80,7 +80,7 @@ foreach my $spec ("* and link(bar)", "* or link(bar)") { } # a pagespec with backlinks() will add as an influence the page with the links -foreach my $spec ("bar or (backlink(foo) and !*.png)", "backlink(foo)") { +foreach my $spec ("bar or (backlink(foo) and !*.png)", "backlink(foo)", "!backlink(foo)") { pagespec_match_list("foo2", $spec, deptype => deptype("presence")); ok($IkiWiki::depends{foo2}{$spec} & $IkiWiki::DEPEND_PRESENCE); ok(! ($IkiWiki::depends{foo2}{$spec} & ($IkiWiki::DEPEND_CONTENT | $IkiWiki::DEPEND_LINKS))); |