Adding basic test cases for the view.
[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 );
11
12 TestApp->setup;
13
14 1;