No need of a second View in tests
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / ESITest / View / TT.pm
CommitLineData
30726632 1package ESITest::View::TT;
2use Moose;
3
4extends 'Catalyst::View::TT';
5with 'Catalyst::View::Component::SubInclude';
6
11b89270 7__PACKAGE__->config(
8 TEMPLATE_EXTENSION => '.tt',
9 subinclude_plugin => 'Visit',
48509210 10 subinclude => {
11 'HTTP::GET' => {
12 class => 'HTTP',
13 http_method => 'GET',
14 uri_map => {
15 '/cpan/' => 'http://search.cpan.org/~',
16 '/github/' => 'http://github.com/',
17 },
18 },
19 },
11b89270 20);
30726632 21
221;