wiki.techinc.nl/tests/phpunit/languages/LanguageBe_taraskTest.php
Antoine Musso 0330258617 Underscore are not valid in language code
* Reject underscore in validation
* Still case unsensitive
* Corrected tests using underscore


Follow up r83160 which was a follow up of r82927 (language code validation)
2011-03-04 17:16:09 +00:00

31 lines
845 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
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' ) );
}
}