Move the test actions to their own controller file to silence warning about
[catagits/Catalyst-View-TT.git] / t / lib / TestApp.pm
CommitLineData
07571b2f 1package TestApp;
2
3use strict;
4use warnings;
5
6use Catalyst; # qw/-Debug/;
e2bbd784 7use Path::Class;
07571b2f 8
9our $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