summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
f99a9a8)
"validate" is a very generic command name, and it validates against
an old standard, so the value of this test is questionable.
BEGIN {
@pages=qw(index features news plugins/map security);
BEGIN {
@pages=qw(index features news plugins/map security);
- if (! -x "/usr/bin/validate") {
- plan skip_all => "/usr/bin/validate html validator not present";
+ if (system("command -v validate >/dev/null") != 0) {
+ plan skip_all => "html validator not present";
}
else {
plan(tests => int @pages + 2);
}
else {
plan(tests => int @pages + 2);