Moved foo() from the app class to a root controller
[catagits/Catalyst-Runtime.git] / t / lib / TestAppPathBug.pm
index 3d3b11b..04582a7 100644 (file)
@@ -11,9 +11,4 @@ __PACKAGE__->config( name => 'TestAppPathBug', root => '/some/dir' );
 
 __PACKAGE__->setup;
 
-sub foo : Path {
-    my ( $self, $c ) = @_;
-    $c->res->body( 'This is the foo method.' );
-}
-
 1;