Moved over pending test

This commit is contained in:
Patrick Steele-Idem 2016-01-18 13:59:57 -07:00
parent 020457aa88
commit c1dc3de3de
4 changed files with 10 additions and 5 deletions

View File

@ -1,5 +0,0 @@
<with vars="x=1; y=7; z=x+10; a">$x $y $z</with>
<div for="i in [1, 2, 3]" with="message=i+ ') hello'">
$message
</div>

View File

@ -0,0 +1,10 @@
<var x=1 y=7 z=x+10 a>
${x} ${y} ${z}
</var>
<div for(i in [1, 2, 3])>
<var message=(i+ ') hello')>
${message}
</var>
</div>