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