Added a first-level controller index test, that passes
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action.pm
index acd8385..3352415 100644 (file)
@@ -9,6 +9,11 @@ sub begin : Private {
     $c->response->content_type('text/plain; charset=utf-8');
 }
 
+sub index : Private {
+    my ( $self, $c ) = @_;
+    $c->res->body( 'Action index' );
+}
+
 sub default : Private {
     my ( $self, $c ) = @_;
     $c->res->output("Error - TestApp::Controller::Action\n");