8d2a831bc7c752054f3b5065bbc8a66a63dbbb06
[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     default_view    => 'TT',
10     'View::Email::AppConfig' => {
11         sender => {
12             mailer => 'Test',
13         },
14     },
15     'View::Email::Template::AppConfig' => {
16         stash_key => 'template_email',
17         sender => {
18             mailer => 'Test',
19         },
20         default => {
21             view => 'TT',
22         },
23     },
24 );
25
26 TestApp->setup;
27
28 1;