replaced deprecated divisibleby by divisible by in tests
authorFabien Potencier <fabien.potencier@gmail.com>
Sat, 5 Jul 2014 12:08:19 +0000 (14:08 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 5 Jul 2014 12:12:06 +0000 (14:12 +0200)
lib/Twig/Node/Expression/Test/Divisibleby.php
test/Twig/Tests/Fixtures/expressions/divisibleby.test

index 0aceb53..d5bed23 100644 (file)
@@ -13,7 +13,7 @@
  * Checks if a variable is divisible by a number.
  *
  * <pre>
- *  {% if loop.index is divisibleby(3) %}
+ *  {% if loop.index is divisible by(3) %}
  * </pre>
  *
  * @author Fabien Potencier <fabien@symfony.com>
index 14ee5e4..238dd27 100644 (file)
@@ -1,8 +1,6 @@
 --TEST--
 Twig supports the "divisible by" operator
 --TEMPLATE--
-{{ 8 is divisibleby(2) ? 'OK' }}
-{{ 8 is not divisibleby(3) ? 'OK' }}
 {{ 8 is divisible by(2) ? 'OK' }}
 {{ 8 is not divisible by(3) ? 'OK' }}
 {{ 8 is    divisible   by   (2) ? 'OK' }}
@@ -17,5 +15,3 @@ OK
 OK
 OK
 OK
-OK
-OK