From: Rafael Kitover Date: Sun, 21 Jun 2009 01:06:01 +0000 (+0000) Subject: forgot to add a file X-Git-Tag: 5.80006~40 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=db9f3d4cf0860f086735e3899e8bd56f9d89c90b forgot to add a file --- diff --git a/t/lib/TestAppIndexDefault/Controller/Default.pm b/t/lib/TestAppIndexDefault/Controller/Default.pm new file mode 100644 index 0000000..f47d023 --- /dev/null +++ b/t/lib/TestAppIndexDefault/Controller/Default.pm @@ -0,0 +1,15 @@ +package TestAppIndexDefault::Controller::Default; + +use base 'Catalyst::Controller'; + +sub default : Private { + my ($self, $c) = @_; + $c->res->body('default_default'); +} + +sub path_one_arg : Path('/default') Args(1) { + my ($self, $c) = @_; + $c->res->body('default_path_one_arg'); +} + +1;