Removed autotest-pending/looping-range (completed)

This commit is contained in:
Patrick Steele-Idem 2015-12-28 10:17:56 -07:00
parent d7800711b5
commit 6752065e5a

View File

@ -1,27 +0,0 @@
<for each="i from 0 to 9">
$i
</for>
-
<for each="i from 9 to 0">
$i
</for>
-
<for each="i from 9 to 0 step -1">
$i
</for>
-
<for each="i from 0 to 9 step 2">
$i
</for>
-
<for each="i from 9 to 0 step -2">
$i
</for>
-
<for each="i from 0 to 'abc'.length">
$i
</for>
-
<for each="i from ''.length to 'abc'.length">
$i
</for>