Moved foo() from the app class to a root controller
[catagits/Catalyst-Runtime.git] / t / lib / TestAppPathBug.pm
CommitLineData
2f381252 1use strict;
2use warnings;
3
4package TestAppPathBug;
5
6use Catalyst;
7
8our $VERSION = '0.01';
9
10__PACKAGE__->config( name => 'TestAppPathBug', root => '/some/dir' );
11
12__PACKAGE__->setup;
13
2f381252 141;