Subject: | all_mailers returns Jifty::Test |
For 2.191 you got this puzzling FAIL report:
http://www.nntp.perl.org/group/perl.cpan.testers/2007/10/msg702186.html
Stepping through the debugger reveils that if Jifty is installed then
the all_mailers method picks up Jifty::Test:
DB<19> n
main::(t/all-mailers.t:9): my $sender = Email::Send->new;
DB<19>
main::(t/all-mailers.t:10): my @mailers = $sender->all_mailers;
DB<19>
main::(t/all-mailers.t:12): ok(
main::(t/all-mailers.t:13): @mailers > 2, # we'll never unbundle
Sendmail or SMTP
main::(t/all-mailers.t:14): "we found at least a couple mailers",
main::(t/all-mailers.t:15): );
DB<19> x @mailers
0 'Jifty::Test'
1 'OK'
2 'NNTP'
3 'Fail'
4 'Test'
5 'Sendmail'
6 'SMTP'
Let me know if you need further informations.