Bump to v0.06, adding in Mason tests and better config handling
[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             method => 'Test',
13         },
14     },
15     'View::Email::Template::AppConfig' => {
16         stash_key => 'template_email',
17         sender => {
18             method => 'Test',
19         },
20     },
21 );
22
23 TestApp->setup;
24
25 1;