package Module::CPANTS::Kwalitee::CpantsErrors; use warnings; use strict; sub order { 1000 } ################################################################## # Analyse ################################################################## sub analyse { my $class=shift; my $me=shift; my $sout=$me->capture_stdout; my $serr=$me->capture_stderr; $sout->stop; $serr->stop; my @eout=$sout->read; my @eerr=$serr->read; $me->d->{cpants_errors}= (@eerr || @eout) ? join("\n",'STDERR:',@eerr,'STDOUT:',@eout) : ''; } ################################################################## # Kwalitee Indicators ################################################################## sub kwalitee_indicators { return [ { name=>'no_cpants_errors', error=>q{Some errors occured during CPANTS testing. They might be caused by bugs in CPANTS or some strange features of this distribution}, remedy=>q{Please report the error(s) to bug-module-cpants-analyse@rt.cpan.org}, code=>sub { shift->{cpants_errors} ? 0 : 1 }, }, ]; } q{Listeing to: FM4 the early years}; __END__ =pod =head1 NAME Module::CPANTS::Kwalitee::CpantsErrors =head1 SYNOPSIS Checks if something strange happend during testing =head1 DESCRIPTION =head2 Methods =head3 order Defines the order in which Kwalitee tests should be run. Returns C<1000>. =head3 analyse Uses C to check for any strange things that might happen during testing =head3 kwalitee_indicators Returns the Kwalitee Indicators datastructure. =over =item * no_cpants_errors =back =head1 SEE ALSO L =head1 AUTHOR Thomas Klausner, , http://domm.zsi.at =head1 COPYRIGHT You may use and distribute this module according to the same terms that Perl is distributed under. =cut