Skip some tests on PHP 5.3.3

pull/276/head
Aleksander Machniak 9 years ago
parent f7565da34b
commit 389f70996c

@ -375,15 +375,19 @@ class Framework_Utils extends PHPUnit_Framework_TestCase
'abc def' => 'abc def',
'ÇçäâàåæéêëèïîìÅÉöôòüûùÿøØáíóúñÑÁÂÀãÃÊËÈÍÎÏÓÔõÕÚÛÙýÝ' => 'ccaaaaaeeeeiiiaeooouuuyooaiounnaaaaaeeeiiioooouuuyy',
'ąáâäćçčéęëěíîłľĺńňóôöŕřśšşťţůúűüźžżýĄŚŻŹĆ' => 'aaaaccceeeeiilllnnooorrsssttuuuuzzzyaszzc',
'ß' => '',
'ßs' => 'sss',
'Xae' => 'xa',
'Xoe' => 'xo',
'Xue' => 'xu',
'项目' => '项目',
'日' => '', // FIXME: this should not be stripped although minlen = 2
);
// this test fails on PHP 5.3.3
if (PHP_VERSION_ID > 50303) {
$test['ß'] = '';
$test['日'] = '';
}
foreach ($test as $input => $output) {
$result = rcube_utils::normalize_string($input);
$this->assertSame($output, $result, "Error normalizing '$input'");

Loading…
Cancel
Save