4f17bd6dc8543a94378140e0baeb7442b70dc2d0
[catagits/Catalyst-View-Component-SubInclude.git] / t / 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(
8     TEMPLATE_EXTENSION => '.tt',
9     subinclude_plugin => 'Visit',
10 );
11
12 1;