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