live serving page in minimal app, plus a new test for that
[catagits/Catalyst-Runtime.git] / t / lib / TestAppSimple.pm
CommitLineData
48603b30 1use strict;
2use warnings;
3
4package TestAppSimple;
5
6use Catalyst qw/
7 Test::MangleDollarUnderScore
8 Test::Errors
9 Test::Headers
10 Test::Plugin
11/;
12
13our $VERSION = '0.01';
14
15__PACKAGE__->config( name => 'TestAppStats', root => '/some/dir' );
16
17__PACKAGE__->setup;
18
191;
20
21