Rename the test app into the lib directory
[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
8use parent qw/Catalyst/;
9use Catalyst qw/
10 -Debug
11 ConfigLoader
12 Static::Simple
13 SubRequest
14/;
15
16our $VERSION = '0.01';
17
18
19__PACKAGE__->config( name => 'ESITest' );
20
21__PACKAGE__->setup();
22
231;