the class used to create the TT object can now be customized
[catagits/Catalyst-View-TT.git] / t / lib / TestApp / View / TT / Includepath2.pm
CommitLineData
8d236c8c 1package TestApp::View::TT::Includepath2;
2
3use FindBin;
4use Path::Class;
5use strict;
6use base 'Catalyst::View::TT';
7
8my $includepath = dir($FindBin::Bin, '/lib/TestApp/root/test_include_path');
9__PACKAGE__->config(
10 PRE_CHOMP => 1,
11 POST_CHOMP => 1,
12 TEMPLATE_EXTENSION => '.tt',
13 INCLUDE_PATH => $includepath,
14);
15
161;