Tests
Test: next-next-current
Template
{% set cls = cycler('odd', 'even') %}
{{ cls.next() }}
{{ cls.next() }}
{{ cls.current }}
Output Django (error) v1.10.1
Invalid block tag on line 1: 'set'. Did you forget to register or load this tag?
Output Jinja2 v2.8.0
odd
even
odd
Output Liquid (error) v3.0.6
Liquid syntax error: Unknown tag 'set'
Output Nunjucks v2.5.0
odd
even
even
Output Swig (error) v1.4.2
(no output)
Output Twig (error) v1.24.2
Unknown "cycler" function. Did you mean "cycle"?
Output Twigjs (error) v0.9.5
TwigException: cycler function does not exist and is not defined in the context
Test: next-next-next
Template
{% set cls = cycler('odd', 'even') %}
{{ cls.next() }}
{{ cls.next() }}
{{ cls.next() }}
Output Django (error) v1.10.1
Invalid block tag on line 1: 'set'. Did you forget to register or load this tag?
Output Jinja2 v2.8.0
odd
even
odd
Output Liquid (error) v3.0.6
Liquid syntax error: Unknown tag 'set'
Output Nunjucks v2.5.0
odd
even
odd
Output Swig (error) v1.4.2
(no output)
Output Twig (error) v1.24.2
Unknown "cycler" function. Did you mean "cycle"?
Output Twigjs (error) v0.9.5
TwigException: cycler function does not exist and is not defined in the context
Test: next-reset-next
Template
{% set cls = cycler('odd', 'even') %}
{{ cls.next() }}
{{ cls.reset() }}
{{ cls.next() }}
Output Django (error) v1.10.1
Invalid block tag on line 1: 'set'. Did you forget to register or load this tag?
Output Jinja2 v2.8.0
odd
None
odd
Output Liquid (error) v3.0.6
Liquid syntax error: Unknown tag 'set'
Output Nunjucks v2.5.0
odd
odd
Output Swig (error) v1.4.2
(no output)
Output Twig (error) v1.24.2
Unknown "cycler" function. Did you mean "cycle"?
Output Twigjs (error) v0.9.5
TwigException: cycler function does not exist and is not defined in the context