conditional: use yesno
parent
96682e3084
commit
b7351daacd
|
@ -1792,7 +1792,7 @@ sub add_depends ($$;$) {
|
|||
# $depends_simple{$page}{lc $i} |= $i{$i};
|
||||
# }
|
||||
#}
|
||||
print STDERR "warning: use of add_depends; influences not tracked\n";
|
||||
print STDERR "warning: use of add_depends by ".caller()."; influences not tracked\n";
|
||||
|
||||
$depends{$page}{$pagespec} |= $deptype;
|
||||
return 1;
|
||||
|
|
|
@ -29,7 +29,7 @@ sub preprocess_if (@) {
|
|||
}
|
||||
|
||||
my $result=0;
|
||||
if ((exists $params{all} && lc $params{all} eq "no") ||
|
||||
if (! IkiWiki::yesno($params{all}) ||
|
||||
# An optimisation to avoid needless looping over every page
|
||||
# and adding of dependencies for simple uses of some of the
|
||||
# tests.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/perl
|
||||
use warnings;
|
||||
use strict;
|
||||
use Test::More tests => 10;
|
||||
use Test::More tests => 11;
|
||||
|
||||
BEGIN { use_ok("IkiWiki"); }
|
||||
|
||||
|
@ -19,3 +19,5 @@ ok(IkiWiki::yesno("NO") == 0);
|
|||
ok(IkiWiki::yesno("1") == 1);
|
||||
ok(IkiWiki::yesno("0") == 0);
|
||||
ok(IkiWiki::yesno("mooooooooooo") == 0);
|
||||
|
||||
ok(IkiWiki::yesno(undef) == 0);
|
||||
|
|
Loading…
Reference in New Issue