David Golden > Test-Reporter-1.53_03 > Test::Reporter

Download:
Test-Reporter-1.53_03.tar.gz

Dependencies

Annotate this POD

Website

Related Modules

CPAN::Reporter
Module::Build
XML::Twig
Data::Dumper
Test::Pod
Mail::Send
Mail::Mailer
IO::Stringy
Net::SMTP
IO::String
more...
By perlmonks.org
View/Report Bugs
Module Version: 1.53_03   Source   Latest Release: Test-Reporter-1.58

NAME ^

Test::Reporter - sends test results to cpan-testers@perl.org

SYNOPSIS ^

  use Test::Reporter;

  my $reporter = Test::Reporter->new();

  $reporter->grade('pass');
  $reporter->distribution('Mail-Freshmeat-1.20');
  $reporter->send() || die $reporter->errstr();

  # or

  my $reporter = Test::Reporter->new();

  $reporter->grade('fail');
  $reporter->distribution('Mail-Freshmeat-1.20');
  $reporter->comments('output of a failed make test goes here...');
  $reporter->edit_comments(); # if you want to edit comments in an editor
  $reporter->send() || die $reporter->errstr();

  # or

  my $reporter = Test::Reporter->new(
      grade => 'fail',
      distribution => 'Mail-Freshmeat-1.20',
      from => 'whoever@wherever.net (Whoever Wherever)',
      comments => 'output of a failed make test goes here...',
      via => 'CPANPLUS X.Y.Z',
  );
  $reporter->send() || die $reporter->errstr();

DESCRIPTION ^

Test::Reporter reports the test results of any given distribution to the CPAN Testers. Test::Reporter has wide support for various perl5's and platforms. For further information visit the below links:

Test::Reporter itself--as a project--also has several links for your visiting enjoyment:

METHODS ^

CAVEATS ^

If you experience a long delay sending mail with Test::Reporter, you may be experiencing a wait as Test::Reporter attempts to determine your email domain. Setting the MAILDOMAIN environment variable will avoid this delay.

COPYRIGHT ^

 Copyright (C) 2008 David A. Golden.
 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Adam J. Foxson.
 Copyright (C) 2004, 2005 Richard Soderberg.
 All rights reserved.

LICENSE ^

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO ^

AUTHORS ^

 Adam J. Foxson <afoxson@pobox.com>
 David Golden <dagolden@cpan.org>
 Kirrily "Skud" Robert <skud@cpan.org>
 Ricardo Signes <rjbs@cpan.org>
 Richard Soderberg <rsod@cpan.org>
 Kurt Starsinic <Kurt.Starsinic@isinet.com>
syntax highlighting: