No need for an around modifier, can quite happily be a before
[catagits/Catalyst-View-Component-SubInclude.git] / t / ESITest / lib / ESITest / View / TT.pm
1 package ESITest::View::TT;
2 use Moose;
3
4 extends 'Catalyst::View::TT';
5 with 'Catalyst::View::Component::SubInclude';
6
7 __PACKAGE__->config( TEMPLATE_EXTENSION => '.tt' );
8
9 1;