Acme-BayaC
view release on metacpan or search on metacpan
General Provisions
(10) Any use, modification, and distribution of the Standard or
Modified Versions is governed by this Artistic License. By using,
modifying or distributing the Package, you accept this license. Do not
use, modify, or distribute the Package, if you do not accept this
license.
(11) If your Modified Version has been derived from a Modified
Version made by someone other than you, you are nevertheless required
to ensure that your Modified Version complies with the requirements of
this license.
(12) This license does not grant you the right to use any trademark,
service mark, tradename, or logo of the Copyright Holder.
(13) This license includes the non-exclusive, worldwide,
free-of-charge patent license to make, have made, use, offer to sell,
sell, import and otherwise transfer the Package with respect to any
patent claims licensable by the Copyright Holder that are necessarily
xt/02_pod-coverage.t view on Meta::CPAN
#!perl -T
use Test::More;
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
all_pod_coverage_ok();
xt/03_pod.t view on Meta::CPAN
use Test::More;
eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
all_pod_files_ok();
xt/04_notabs.t view on Meta::CPAN
use Test::More;
eval "use Test::NoTabs";
plan skip_all => "Test::NoTabs required for testing POD" if $@;
all_perl_files_ok('lib');
xt/05_code_metrics.t view on Meta::CPAN
eval 'require Test::Perl::Metrics::Lite';
if ($@) {
eval "use Test::More";
Test::More::plan(
skip_all => 'Test::Perl::Metrics::Lite required for testing code metrics.'
);
}
else {
Test::Perl::Metrics::Lite->import(
-mccabe_complexity => 20,
-loc => 80,
-except_dir => [
],
-except_file => [
],
xt/06_no_use_vars.t view on Meta::CPAN
use Test::More;
eval "use Test::Vars";
plan skip_all => 'Test::Vars required for testing for unused vars' if $@;
all_vars_ok();
( run in 0.555 second using v1.01-cache-2.11-cpan-0a6323c29d9 )