Merge branch 'master' into gsoc_breadboard
[catagits/Catalyst-Runtime.git] / t / lib / TestAppContainer / Controller / Root.pm
CommitLineData
ffc0b0d8 1package TestAppContainer::Controller::Root;
2
3use strict;
4use warnings;
5
6use base 'Catalyst::Controller';
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;