[Catalyst-commits] r10610 - Catalyst-Runtime/5.80/branches/index_default_fuckage/t/lib/TestAppIndexDefault/Controller

caelum at dev.catalyst.perl.org caelum at dev.catalyst.perl.org
Sun Jun 21 01:06:02 GMT 2009


Author: caelum
Date: 2009-06-21 01:06:01 +0000 (Sun, 21 Jun 2009)
New Revision: 10610

Added:
   Catalyst-Runtime/5.80/branches/index_default_fuckage/t/lib/TestAppIndexDefault/Controller/Default.pm
Log:
forgot to add a file

Added: Catalyst-Runtime/5.80/branches/index_default_fuckage/t/lib/TestAppIndexDefault/Controller/Default.pm
===================================================================
--- Catalyst-Runtime/5.80/branches/index_default_fuckage/t/lib/TestAppIndexDefault/Controller/Default.pm	                        (rev 0)
+++ Catalyst-Runtime/5.80/branches/index_default_fuckage/t/lib/TestAppIndexDefault/Controller/Default.pm	2009-06-21 01:06:01 UTC (rev 10610)
@@ -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;




More information about the Catalyst-commits mailing list