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