Scheduler, basic features working, still lots todo
[catagits/Catalyst-Plugin-Scheduler.git] / t / lib / TestApp.pm
CommitLineData
cbf1ecfe 1package TestApp;
2
3use strict;
4use warnings;
5use Catalyst;
6use Data::Dumper;
7
8our $VERSION = '0.01';
9
10TestApp->config(
11 name => 'TestApp',
12);
13
14TestApp->setup( qw/-Debug Scheduler/ );
15
16sub default : Private {
17 my ( $self, $c ) = @_;
18
19 $c->res->output( 'default' );
20}
21
221;
23