Codebase list libtest-reporter-perl / 4ff725e
bump version to 1.53_02 for release David Golden 15 years ago
9 changed file(s) with 13 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Perl extension Test::Reporter.
11 For canonical change info, visit the master repository at
22 http://eclipse.resort.org/git/gitweb.cgi?p=test-reporter.git
3
4 1.53_02 Wed Apr 15 13:30:53 EDT 2009
5
6 - with Net::SMTP transport, if lines are longer than 100
7 characters, the email will be encoded with quoted-printable
38
49 1.53_01 Tue Apr 7 11:01:37 EDT 2009
510
2929 $Transport
3030 );
3131
32 $VERSION = '1.53_01';
32 $VERSION = '1.53_02';
3333 ($Tempfile, $Report) = File::Temp::tempfile(UNLINK => 1);
3434 $Reporter = Test::Reporter->new();
3535 %Grades = (
22 package Test::Reporter::Transport::File;
33 use base 'Test::Reporter::Transport';
44 use vars qw/$VERSION/;
5 $VERSION = '1.53_01';
5 $VERSION = '1.53_02';
66 $VERSION = eval $VERSION;
77
88 sub new {
22 package Test::Reporter::Transport::HTTPGateway;
33 use base 'Test::Reporter::Transport';
44 use vars qw/$VERSION/;
5 $VERSION = '1.53_01';
5 $VERSION = '1.53_02';
66 $VERSION = eval $VERSION;
77
88 use LWP::UserAgent;
22 package Test::Reporter::Transport::Mail::Send;
33 use base 'Test::Reporter::Transport';
44 use vars qw/$VERSION/;
5 $VERSION = '1.53_01';
5 $VERSION = '1.53_02';
66 $VERSION = eval $VERSION;
77
88 use Mail::Send;
22 package Test::Reporter::Transport::Net::SMTP::TLS;
33 use base 'Test::Reporter::Transport::Net::SMTP';
44 use vars qw/$VERSION/;
5 $VERSION = '1.53_01';
5 $VERSION = '1.53_02';
66 $VERSION = eval $VERSION;
77
88 use Net::SMTP::TLS;
22 package Test::Reporter::Transport::Net::SMTP;
33 use base 'Test::Reporter::Transport';
44 use vars qw/$VERSION/;
5 $VERSION = '1.53_01';
5 $VERSION = '1.53_02';
66 $VERSION = eval $VERSION;
77
88 sub new {
11 BEGIN{ if (not $] < 5.006) { require warnings; warnings->import } }
22 package Test::Reporter::Transport;
33 use vars qw/$VERSION/;
4 $VERSION = '1.53_01';
4 $VERSION = '1.53_02';
55 $VERSION = eval $VERSION;
66
77 sub new { die "Not implemented" }
3333 use constant FAKE_NO_NET_DOMAIN => 0; # for debugging only
3434 use constant FAKE_NO_MAIL_SEND => 0; # for debugging only
3535
36 $VERSION = '1.53_01';
36 $VERSION = '1.53_02';
3737
3838 local $^W = 1;
3939