the class used to create the TT object can now be customized
[catagits/Catalyst-View-TT.git] / t / lib / TestApp / View / TT / Classconfig.pm
1 package TestApp::View::TT::Classconfig;
2
3 use strict;
4 use base 'Catalyst::View::TT';
5
6 use TestApp::Template::Any;
7
8 __PACKAGE__->config(
9     CLASS              => 'TestApp::Template::Any',
10 );
11
12 1;