File Coverage

blib/lib/MojoMojo/View/Email.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package MojoMojo::View::Email;
2              
3 35     35   16473 use parent 'Catalyst::View::Email::Template';
  35         104  
  35         219  
4              
5             __PACKAGE__->config(
6             stash_key => 'email',
7             template_prefix => 'mail',
8             sender => { mailer => 'SMTP' },
9             default => {
10             content_type => 'text/plain',
11             charset => 'utf-8',
12             view => 'TT',
13             },
14             );
15              
16             1;
17              
18             __END__
19              
20             =head1 Name
21              
22             MojoMojo::View::Email - Email Templates
23              
24             =cut