Scheduler, basic features working, still lots todo
[catagits/Catalyst-Plugin-Scheduler.git] / t / lib / TestApp.pm
diff --git a/t/lib/TestApp.pm b/t/lib/TestApp.pm
new file mode 100644 (file)
index 0000000..75e1d2b
--- /dev/null
@@ -0,0 +1,23 @@
+package TestApp;
+
+use strict;
+use warnings;
+use Catalyst;
+use Data::Dumper;
+
+our $VERSION = '0.01';
+
+TestApp->config(
+    name => 'TestApp',
+);
+
+TestApp->setup( qw/-Debug Scheduler/ );
+
+sub default : Private {
+    my ( $self, $c ) = @_;
+    
+    $c->res->output( 'default' );
+}
+
+1;
+