Fix plugin links in POD
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / ESITest.pm
CommitLineData
30726632 1package ESITest;
2
3use strict;
4use warnings;
5
6use Catalyst::Runtime '5.70';
7
11b89270 8use base qw/Catalyst/;
30726632 9use Catalyst qw/
30726632 10 SubRequest
11/;
12
13our $VERSION = '0.01';
14
15
16__PACKAGE__->config( name => 'ESITest' );
17
18__PACKAGE__->setup();
19
201;