Test::Compile::Internal(3pm) | User Contributed Perl Documentation | Test::Compile::Internal(3pm) |
Test::Compile::Internal - Test whether your perl files compile.
use Test::Compile::Internal; my $test = Test::Compile::Internal->new(); $test->all_files_ok(); $test->done_testing();
"Test::Compile::Internal" is an object oriented tool for testing whether your perl files compile.
It is primarily to provide the inner workings of "Test::Compile", but it can also be used directly to test a CPAN distribution.
If @dirs is defined then it is taken as an array of directories to be searched for perl files, otherwise it searches some default locations - see "all_pm_files()" and "all_pl_files()".
Verbose is set on by default.
Skips any files in "CVS" or ".svn" directories.
The order of the files returned is machine-dependent. If you want them sorted, you'll have to sort them yourself.
If @dirs is undefined, it searches script if script exists, or else bin if bin exists.
Skips any files in "CVS" or ".svn" directories.
The order of the files returned is machine-dependent. If you want them sorted, you'll have to sort them yourself.
"Test::Compile::Internal" encapsulates a "Test::Builder" object, and provides access to some of its methods.
Output will be indented and marked with a # so as not to interfere with test output. A newline will be put on the end if there isn't one already.
We encourage using this rather than calling print directly.
Sagar R. Shah "<srshah@cpan.org>", Marcel Gruenauer, "<marcel@cpan.org>", Evan Giles, "<egiles@cpan.org>"
Copyright 2007-2015 by the authors.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Test::Strict provides functions to ensure your perl files compile, with the added bonus that it will check you have used strict in all your files.
2015-10-06 | perl v5.20.2 |