Bump to v0.06, adding in Mason tests and better config handling
[catagits/Catalyst-View-Email.git] / t / lib / TestApp.pm
CommitLineData
82300460 1package # Hide from PAUSE
2 TestApp;
3
4use Catalyst;
5use FindBin;
6
7TestApp->config(
8 root => "$FindBin::Bin/root",
25650747 9 default_view => 'TT',
10 'View::Email::AppConfig' => {
11 sender => {
12 method => 'Test',
13 },
14 },
8b10ee55 15 'View::Email::Template::AppConfig' => {
16 stash_key => 'template_email',
17 sender => {
18 method => 'Test',
19 },
20 },
82300460 21);
22
23TestApp->setup;
24
251;