use strict; use warnings; BEGIN { $ENV{EMAIL_SENDER_TRANSPORT} = 'Test' } use Test::More; use Email::Sender::Simple; use FindBin; use lib "$FindBin::Bin/lib"; eval "use Catalyst::View::TT"; if ( $@ ) { plan skip_all => 'Catalyst::View::TT required for Template tests'; exit; } use_ok('Catalyst::Test', 'TestApp'); my $response; my $time = time; ok( ( $response = request("/template_email?time=$time"))->is_success, 'request ok' ); my @emails = Email::Sender::Simple->default_transport->deliveries; like( $response->content, qr/Template Email Ok/, 'controller says ok' ); cmp_ok(@emails, '==', 1, 'got emails'); isa_ok( $emails[0]->{'email'}, 'Email::Abstract', 'email is ok' ); like($emails[0]->{'email'}[0]->header("Content-type"), qr#^multipart/alternative#, 'Multipart email'); my @parts = $emails[0]->{'email'}[0]->parts; cmp_ok(@parts, '==', 2, 'got parts'); is($parts[0]->content_type, 'text/plain', 'text/plain part ok'); like($parts[0]->body, qr/test-email\@example.com on $time/, 'got content back'); is($parts[1]->content_type, 'text/html', 'text/html ok'); like($parts[1]->body, qr{test-email\@example.com on $time}, 'got content back'); #like($emails[0]->body, qr/$time/, 'Got our email'); done_testing();