Files
Twig/tests/Fixtures/expressions/divisibleby.test

22 lines
347 B
Plaintext

--TEST--
Twig supports the "divisible by" operator
--TEMPLATE--
{{ 8 is divisible by(2) ? 'OK' }}
{{ 8 is divisible by 2 ? 'OK' }}
{{ 8 is not divisible by(3) ? 'OK' }}
{{ 8 is divisible by (2) ? 'OK' }}
{{ 8 is divisible by 2 ? 'OK' }}
{{ 8 is not
divisible
by
(3) ? 'OK' }}
--DATA--
return []
--EXPECT--
OK
OK
OK
OK
OK
OK