whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / lib / TestAppOnDemand.pm
1 package TestAppOnDemand;
2
3 use strict;
4 use Catalyst qw/
5     Test::Errors
6     Test::Headers
7 /;
8 use Catalyst::Utils;
9
10 our $VERSION = '0.01';
11
12 __PACKAGE__->config(
13     name            => __PACKAGE__,
14     root            => '/some/dir',
15     parse_on_demand => 1,
16 );
17
18 __PACKAGE__->setup;
19
20 1;