Browse Source

Add tests for other ru plural rules.

Refs #9554
Mark Story 9 years ago
parent
commit
ed09383e6d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/TestCase/I18n/PluralRulesTest.php

+ 4 - 0
tests/TestCase/I18n/PluralRulesTest.php

@@ -53,6 +53,10 @@ class PluralRulesTest extends TestCase
             ['ru', 0, 2],
             ['ru', 1, 0],
             ['ru', 2, 1],
+            ['ru', 21, 0],
+            ['ru', 22, 1],
+            ['ru', 5, 2],
+            ['ru', 7, 2],
             ['sk', 0, 2],
             ['sk', 1, 0],
             ['sk', 2, 1],