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