Refreshing branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Controller / Index.pm
diff --git a/trunk/t/lib/TestApp/Controller/Index.pm b/trunk/t/lib/TestApp/Controller/Index.pm
new file mode 100644 (file)
index 0000000..cc40f99
--- /dev/null
@@ -0,0 +1,11 @@
+package TestApp::Controller::Index;
+
+use strict;
+use base 'Catalyst::Controller';
+
+sub index : Private {
+    my ( $self, $c ) = @_;
+    $c->res->body( 'Index index' );
+}
+
+1;