some tests fail due to logical changes, will fix that in a follow-up Change-Id: I8a5e4087ecf674fbcf6327c5d168cd401be12400
31 lines
915 B
PHP
31 lines
915 B
PHP
<?php
|
|
|
|
class LocalisationCacheTest extends MediaWikiTestCase {
|
|
public function testPuralRulesFallback() {
|
|
$cache = Language::getLocalisationCache();
|
|
|
|
$this->assertEquals(
|
|
$cache->getItem( 'ru', 'pluralRules' ),
|
|
$cache->getItem( 'os', 'pluralRules' ),
|
|
'os plural rules (undefined) fallback to ru (defined)'
|
|
);
|
|
|
|
$this->assertEquals(
|
|
$cache->getItem( 'ru', 'compiledPluralRules' ),
|
|
$cache->getItem( 'os', 'compiledPluralRules' ),
|
|
'os compiled plural rules (undefined) fallback to ru (defined)'
|
|
);
|
|
|
|
$this->assertNotEquals(
|
|
$cache->getItem( 'ksh', 'pluralRules' ),
|
|
$cache->getItem( 'de', 'pluralRules' ),
|
|
'ksh plural rules (defined) dont fallback to de (defined)'
|
|
);
|
|
|
|
$this->assertNotEquals(
|
|
$cache->getItem( 'ksh', 'compiledPluralRules' ),
|
|
$cache->getItem( 'de', 'compiledPluralRules' ),
|
|
'ksh compiled plural rules (defined) dont fallback to de (defined)'
|
|
);
|
|
}
|
|
}
|