Moved action methods from TestAppDoubleAutoBug.pm to a root controller and fixed...
[catagits/Catalyst-Runtime.git] / t / lib / TestAppDoubleAutoBug.pm
index 00855cd..82a5e07 100644 (file)
@@ -44,16 +44,3 @@ sub execute {
 
     return $c->SUPER::execute(@_);
 }
-
-
-
-sub auto : Private {
-    my ( $self, $c ) = @_;
-    ++$c->stash->{auto_count};
-    return 1;
-}
-
-sub default : Private {
-    my ( $self, $c ) = @_;
-    $c->res->body( sprintf 'default, auto=%d', $c->stash->{auto_count} );
-}