wiki.techinc.nl/tests/phpunit/languages/LanguageBe_taraskTest.php
2011-06-03 04:25:21 +00:00

30 lines
786 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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' ) );
}
}