added MANIFEST.SKIP
[catagits/Catalyst-View-Email.git] / t / lib / TestApp.pm
CommitLineData
82300460 1package # Hide from PAUSE
2 TestApp;
3
8e2a74bf 4use Catalyst;
82300460 5use FindBin;
6
7TestApp->config(
ea115f9b 8 root => "$FindBin::Bin/root",
9 default_view => 'TT',
25650747 10 'View::Email::AppConfig' => {
11 sender => {
06afcdbc 12 mailer => 'Test',
25650747 13 },
14 },
8b10ee55 15 'View::Email::Template::AppConfig' => {
16 stash_key => 'template_email',
17 sender => {
06afcdbc 18 mailer => 'Test',
19 },
d603a14e 20 content_type => 'text/html',
06afcdbc 21 default => {
22 view => 'TT',
8b10ee55 23 },
24 },
82300460 25);
26
27TestApp->setup;
28
291;