Scheduler, more tests, almost feature-complete, todo: YAML
[catagits/Catalyst-Plugin-Scheduler.git] / t / lib / PluginTestApp.pm
CommitLineData
f9d8e3cf 1package PluginTestApp;
2
3use strict;
4use warnings;
5use Catalyst;
6
7our $VERSION = '0.01';
8
9# reuse the other TestApp's home directory, so we have a place to write
10# the scheduler.state file
11PluginTestApp->config(
12 name => 'PluginTestApp',
13 home => "$FindBin::Bin/lib/TestApp"
14);
15
16PluginTestApp->setup( qw/Scheduler PluginTest/ );
17
18sub default : Private {
19 my ( $self, $c ) = @_;
20
21 $c->res->output( 'default' );
22}
23
241;
25