fix warnings in test suite
[catagits/Catalyst-Plugin-Scheduler.git] / t / lib / TestApp / Controller / Root.pm
CommitLineData
b245b6f3 1package TestApp::Controller::Root;
2
3use strict;
4use warnings;
5
6use base 'Catalyst::Controller';
7
8__PACKAGE__->config->{ namespace } = '';
9
10sub default : Private {
11 my ( $self, $c ) = @_;
12
13 $c->res->output( 'default' );
14}
15
161;