initial import
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / lib / TestApp / Controller / Config.pm
diff --git a/t/lib/TestApp/Controller/Config.pm b/t/lib/TestApp/Controller/Config.pm
new file mode 100644 (file)
index 0000000..1951de2
--- /dev/null
@@ -0,0 +1,13 @@
+package TestApp::Controller::Config;\r
+\r
+use strict;\r
+use warnings;\r
+\r
+use base qw( Catalyst::Controller );\r
+\r
+sub index : Private {\r
+       my( $self, $c ) = @_;\r
+       $c->res->output( $self->{ foo } );\r
+}\r
+\r
+1;
\ No newline at end of file