David Golden > Test-Reporter-1.54 > Test::Reporter

Download:
Test-Reporter-1.54.tar.gz

Dependencies

Annotate this POD

Website

View/Report Bugs

Module Version: 1.54   Source  

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 project. Test::Reporter has wide support for various perl5's and platforms.

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.

SEE ALSO ^

For more about CPAN Testers:

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

Related Perl modules:

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>

COPYRIGHT ^

 Copyright (C) 2008-2009 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.