X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/52e06ad51e9f029bb5a560ea20ec49f5ab9e751e..9a9b25346dbf380e955ffa815bbe6f6d4ac9c5a6:/t/syntax.t diff --git a/t/syntax.t b/t/syntax.t index cbbdee62f..d09d17f7f 100755 --- a/t/syntax.t +++ b/t/syntax.t @@ -3,9 +3,11 @@ use warnings; use strict; use Test::More; -my @progs="ikiwiki.pl"; +my @progs="ikiwiki.in"; my @libs="IkiWiki.pm"; -push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm`; +# monotone, external, amazon_s3 skipped since they need perl modules +push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v monotone.pm | grep -v external.pm | grep -v amazon_s3.pm`; +push @libs, 'IkiWiki/Plugin/skeleton.pm.example'; plan(tests => (@progs + @libs));