fix warnings in test suite
[catagits/Catalyst-Plugin-Scheduler.git] / t / lib / PluginTestApp / Controller / Root.pm
diff --git a/t/lib/PluginTestApp/Controller/Root.pm b/t/lib/PluginTestApp/Controller/Root.pm
new file mode 100644 (file)
index 0000000..8bc70b2
--- /dev/null
@@ -0,0 +1,16 @@
+package PluginTestApp::Controller::Root;
+
+use strict;
+use warnings;
+
+use base 'Catalyst::Controller';
+
+__PACKAGE__->config->{ namespace } = '';
+
+sub default : Private {
+    my ( $self, $c ) = @_;
+    
+    $c->res->output( 'default' );
+}
+
+1;