This is also toast. We need a much better error, but this can go
[catagits/Catalyst-Runtime.git] / t / lib / TestAppPathBug / Controller / Root.pm
CommitLineData
c14a10db 1package TestAppPathBug::Controller::Root;
2use strict;
3use warnings;
4use base qw/Catalyst::Controller/;
5
6__PACKAGE__->config(namespace => '');
7
8sub foo : Path {
9 my ( $self, $c ) = @_;
10 $c->res->body( 'This is the foo method.' );
11}
12
131;
14