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