whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / lib / TestAppChainedAbsolutePathPart.pm
1 package TestAppChainedAbsolutePathPart;
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 TestAppChainedAbsolutePathPart
13     ->config(
14         name => 'TestAppChainedAbsolutePathPart',
15         root => '/some/dir'
16     );
17
18 TestAppChainedAbsolutePathPart->setup;
19
20 1;