Skip to content
This repository has been archived by the owner on Apr 11, 2018. It is now read-only.

Commit

Permalink
remove duplicate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paularmstrong committed Jan 28, 2014
1 parent 1eeeacd commit e30fd4e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/tags/for.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ var cases = [
{ input: '{% for a in c %}{{ loop.last }}, {% endfor %}', out: 'false, true, ' },
{ input: '{% for a,b in b %}{{ a }}{{ b }}{% endfor %}', out: '011223' },
{ input: '{% for a, b in c %}{{ b }}{% endfor %}', out: 'applebanana' },
{ input: '{% for a in c %}{{ loop.index }}{% endfor %}', out: '12' },
{ input: '{% for a in c %}{{ loop.index }}{% endfor %}', out: '12' },
{ input: '{% for a in d|default(["a"]) %}{{ a }}{% endfor %}', out: 'a' },
];

Expand Down

0 comments on commit e30fd4e

Please sign in to comment.