removed debug shit
[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                 content_type => 'text/html',
21         default => {
22             view => 'TT',
23         },
24     },
25 );
26
27 TestApp->setup;
28
29 1;