Rename to Catalyst-View-Component-SubInclude
[catagits/Catalyst-View-Component-SubInclude.git] / t / ESITest / lib / ESITest.pm
1 package ESITest;
2
3 use strict;
4 use warnings;
5
6 use Catalyst::Runtime '5.70';
7
8 use parent qw/Catalyst/;
9 use Catalyst qw/
10     -Debug
11     ConfigLoader
12     Static::Simple
13     SubRequest
14 /;
15
16 our $VERSION = '0.01';
17
18
19 __PACKAGE__->config( name => 'ESITest' );
20
21 __PACKAGE__->setup();
22
23 1;