[Catalyst-commits] r6228 - trunk/Catalyst-Runtime/t

andyg at dev.catalyst.perl.org andyg at dev.catalyst.perl.org
Wed Mar 28 23:24:42 GMT 2007


Author: andyg
Date: 2007-03-28 23:24:42 +0100 (Wed, 28 Mar 2007)
New Revision: 6228

Modified:
   trunk/Catalyst-Runtime/t/live_component_controller_args.t
Log:
Skip [, (, and ) args tests on remote servers.  These fail on both Apache and lighttpd for whatever reason

Modified: trunk/Catalyst-Runtime/t/live_component_controller_args.t
===================================================================
--- trunk/Catalyst-Runtime/t/live_component_controller_args.t	2007-03-28 21:38:28 UTC (rev 6227)
+++ trunk/Catalyst-Runtime/t/live_component_controller_args.t	2007-03-28 22:24:42 UTC (rev 6228)
@@ -65,8 +65,9 @@
     
     SKIP:
     {   
-        # Skip %2F and . tests on real webservers, they are often ignored by default
-        if ( $ENV{CATALYST_SERVER} && $path =~ /(?:%2F|\.)/ ) {
+        # Skip %2F, ., [, (, and ) tests on real webservers
+        # Both Apache and lighttpd don't seem to like these
+        if ( $ENV{CATALYST_SERVER} && $path =~ /(?:%2F|\.|%5B|\(|\))/ ) {
             skip "Skipping $path tests on remote server", 6;
         }
 




More information about the Catalyst-commits mailing list