added setup_attributes to Email.pm and use it in Template.pm
[catagits/Catalyst-View-Email.git] / t / lib / TestApp / View / Email / Template.pm
1 package # Hide me
2     TestApp::View::Email::Template;
3
4 use strict;
5 use base 'Catalyst::View::Email::Template';
6
7 __PACKAGE__->config(
8     sender => {
9         mailer => 'Test'
10     },
11     stash_key       => 'email',
12     template_prefix => '',
13 );
14
15 1;