From d417de70fcf39e0a7a15ba780b597914d16ca0f7 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 12 Mar 2014 18:12:23 +0100 Subject: Update to MediaWiki 1.22.4 --- tests/phpunit/languages/LanguageFrTest.php | 35 ------------------------------ 1 file changed, 35 deletions(-) delete mode 100644 tests/phpunit/languages/LanguageFrTest.php (limited to 'tests/phpunit/languages/LanguageFrTest.php') diff --git a/tests/phpunit/languages/LanguageFrTest.php b/tests/phpunit/languages/LanguageFrTest.php deleted file mode 100644 index 46b65011..00000000 --- a/tests/phpunit/languages/LanguageFrTest.php +++ /dev/null @@ -1,35 +0,0 @@ -assertEquals( $result, $this->getLang()->convertPlural( $value, $forms ) ); - } - - /** - * @dataProvider providePlural - * @covers Language::getPluralRuleType - */ - public function testGetPluralRuleType( $result, $value ) { - $this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) ); - } - - public static function providePlural() { - return array( - array( 'one', 0 ), - array( 'one', 1 ), - array( 'other', 2 ), - array( 'other', 200 ), - ); - } -} -- cgit v1.2.2