refactor of the API and mainly Catalyst::View::Email::Template
[catagits/Catalyst-View-Email.git] / t / lib / TestApp.pm
1 package # Hide from PAUSE
2     TestApp;
3
4 use Catalyst;
5 use FindBin;
6
7 TestApp->config(
8     root => "$FindBin::Bin/root",
9     'View::Email::AppConfig' => {
10         sender => {
11             mailer => 'Test',
12         },
13     },
14     'View::Email::Template::AppConfig' => {
15         stash_key => 'template_email',
16         sender => {
17             mailer => 'Test',
18         },
19         default => {
20             view => 'TT',
21         },
22     },
23 );
24
25 TestApp->setup;
26
27 1;