Fix test to not need "parent" (RT #48547)
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / lib / TestApp / Controller / Root.pm
CommitLineData
eb1a771f 1package TestApp::Controller::Root;
2
3use strict;
4use warnings;
b66160b0 5
6use base 'Catalyst::Controller';
eb1a771f 7
8__PACKAGE__->config->{namespace} = '';
9
10sub default :Path {
11 my ( $self, $c ) = @_;
12 $c->response->body( 'Page not found' );
13 $c->response->status(404);
14}
15
161;