Clean up test app and test start server script
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / ESITest / View / TT.pm
CommitLineData
30726632 1package ESITest::View::TT;
2use Moose;
9fb2f435 3use namespace::autoclean;
30726632 4
5extends 'Catalyst::View::TT';
6with 'Catalyst::View::Component::SubInclude';
7
11b89270 8__PACKAGE__->config(
9fb2f435 9 render_die => 1,
11b89270 10 TEMPLATE_EXTENSION => '.tt',
11 subinclude_plugin => 'Visit',
48509210 12 subinclude => {
13 'HTTP::GET' => {
14 class => 'HTTP',
15 http_method => 'GET',
16 uri_map => {
17 '/cpan/' => 'http://search.cpan.org/~',
18 '/github/' => 'http://github.com/',
19 },
20 },
21 },
11b89270 22);
30726632 23
9fb2f435 24__PACKAGE__->meta->make_immutable;
30726632 251;
9fb2f435 26