Updates to mailer_args, pod -- support of hash and array of mailer_args. Version...
[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 },
82300460 15);
16
17TestApp->setup;
18
191;