* Reject underscore in validation * Still case unsensitive * Corrected tests using underscore Follow up r83160 which was a follow up of r82927 (language code validation)
31 lines
845 B
PHP
31 lines
845 B
PHP
<?php
|
||
require_once dirname(dirname(__FILE__)). '/bootstrap.php';
|
||
|
||
class LanguageBeTaraskTest extends MediaWikiTestCase {
|
||
private $lang;
|
||
|
||
function setUp() {
|
||
$this->lang = Language::factory( 'Be-tarask' );
|
||
}
|
||
function tearDown() {
|
||
unset( $this->lang );
|
||
}
|
||
|
||
/** see bug 23156 & r64981 */
|
||
function testSearchRightSingleQuotationMarkAsApostroph() {
|
||
$this->assertEquals(
|
||
"'",
|
||
$this->lang->normalizeForSearch( '’' ),
|
||
'bug 23156: U+2019 conversion to U+0027'
|
||
);
|
||
}
|
||
/** see bug 23156 & r64981 */
|
||
function testCommafy() {
|
||
$this->assertEquals( '1,234,567', $this->lang->commafy( '1234567' ) );
|
||
$this->assertEquals( '12,345', $this->lang->commafy( '12345' ) );
|
||
}
|
||
/** see bug 23156 & r64981 */
|
||
function testDoesNotCommafyFourDigitsNumber() {
|
||
$this->assertEquals( '1234', $this->lang->commafy( '1234' ) );
|
||
}
|
||
}
|