Why not adopt me?
NAME
Test::Syntax::Aggregate - Check syntax of multiple scripts
SYNOPSIS
This module allows you to check syntax of multiple scripts using the same common module.
use Test::Syntax::Aggregate;
check_scripts_syntax(
preload => [ @modules ],
scripts => [ @scripts ],
);
DESCRIPTION
Suppose you have a lot of cgi scripts that use the same set of preloaded modules. If you running syntax check on these scripts it may take a lot of time mostly because of loading perl and common modules for every single script. This module borrows idea and some code from Test::Aggregate and ModPerl::Registry. It preloads specified modules first, and when compiles scripts wrapping them into functions.
SUBROUTINES
check_scripts_syntax(%parameters)
EXPORT
It exports check_scripts_syntax function.
AUTHOR
Pavel Shaydo, <zwon at cpan.org>
BUGS
It modifies scripts, so it is possible that it will introduce syntax errors to some of them or fix and miss existing errors in other cases.
SEE ALSO
ACKNOWLEDGEMENTS
This module borrows idea from Test::Aggregate and some code from ModPerl::RegistryCooker.
LICENSE AND COPYRIGHT
Copyright 2011 Pavel Shaydo.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.