Fix plugin links in POD
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / ESITest / View / TT.pm
1 package ESITest::View::TT;
2 use Moose;
3 use namespace::autoclean;
4
5 extends 'Catalyst::View::TT';
6 with 'Catalyst::View::Component::SubInclude';
7
8 __PACKAGE__->config(
9     render_die => 1,
10     TEMPLATE_EXTENSION => '.tt',
11     subinclude_plugin => 'Visit',
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     },
22 );
23
24 __PACKAGE__->meta->make_immutable;
25 1;
26