Author: Raymond Bosman
Date: 2006-08-31 11:19:19 +0200 (Thu, 31 Aug 2006)
New Revision: 3422

Log:
- Added a test case that tests nested custom blocks.

Added:
   trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.in
   trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.out

Added: trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.in
===================================================================
--- trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.in    
2006-08-31 08:55:07 UTC (rev 3421)
+++ trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.in    
2006-08-31 09:19:19 UTC (rev 3422)
@@ -0,0 +1,9 @@
+{cblock}
+       Hello
+       {cblock}
+               {foreach 1..3 as $i}
+               {$i}
+               {/foreach}
+       {/cblock}
+       world!
+{/cblock}


Property changes on: 
trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.in
___________________________________________________________________
Name: svn:eol-style
   + native

Added: trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.out
===================================================================
--- trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.out   
2006-08-31 08:55:07 UTC (rev 3421)
+++ trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.out   
2006-08-31 09:19:19 UTC (rev 3422)
@@ -0,0 +1,5 @@
+Hello
+       1
+       2
+       3
+world!


Property changes on: 
trunk/Template/tests/regression_tests/custom_blocks/correct/recursive.out
___________________________________________________________________
Name: svn:eol-style
   + native

-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to