Move the test actions to their own controller file to silence warning about
[catagits/Catalyst-View-TT.git] / trunk / t / lib / TestApp.pm
1 package TestApp;
2
3 use strict;
4 use warnings;
5
6 use Catalyst; # qw/-Debug/;
7 use Path::Class;
8
9 our $VERSION = '0.01';
10
11 __PACKAGE__->config(
12     name                  => 'TestApp',
13     default_message       => 'hi',
14     default_view          => 'Pkgconfig',
15     'View::TT::Appconfig' => {
16         PRE_CHOMP          => 1,
17         POST_CHOMP         => 1,
18         TEMPLATE_EXTENSION => '.tt',
19     },
20 );
21
22 __PACKAGE__->setup;
23