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

caelum at dev.catalyst.perl.org caelum at dev.catalyst.perl.org
Mon Jun 22 02:17:30 GMT 2009


Author: caelum
Date: 2009-06-22 02:17:29 +0000 (Mon, 22 Jun 2009)
New Revision: 10611

Modified:
   Catalyst-Runtime/5.80/branches/index_default_fuckage/t/lib/TestAppIndexDefault/Controller/Default.pm
Log:
missing / in test file

Modified: 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	2009-06-21 01:06:01 UTC (rev 10610)
+++ Catalyst-Runtime/5.80/branches/index_default_fuckage/t/lib/TestAppIndexDefault/Controller/Default.pm	2009-06-22 02:17:29 UTC (rev 10611)
@@ -7,7 +7,7 @@
     $c->res->body('default_default');
 }
 
-sub path_one_arg : Path('/default') Args(1) {
+sub path_one_arg : Path('/default/') Args(1) {
     my ($self, $c) = @_;
     $c->res->body('default_path_one_arg');
 }




More information about the Catalyst-commits mailing list