diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-27 10:22:10 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-27 10:22:10 +0200 |
commit | d921587f291a7effb34adab85d0feecec8663306 (patch) | |
tree | c78b01c8d271a5bd35ee20f4af0ddc7bad9d2897 /tests | |
parent | fa7b31940422976b4e2de9872e61cf7c2a861f2f (diff) |
Add more tests for normalize_string() - some failing
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Framework/Utils.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/Framework/Utils.php b/tests/Framework/Utils.php index 082aaea3b..82b8ebb73 100644 --- a/tests/Framework/Utils.php +++ b/tests/Framework/Utils.php @@ -325,8 +325,13 @@ class Framework_Utils extends PHPUnit_Framework_TestCase function test_normalize_string() { $test = array( - '' => '', + '' => '', 'abc def' => 'abc def', + 'ÇçäâàåéêëèïîìÅÉöôòüûùÿøØáíóúñÑÁÂÀãÃÊËÈÍÎÏÓÔõÕÚÛÙýÝ' => 'ccaaaaeeeeiiiaeooouuuyooaiounnaaaaaeeeiiioooouuuyy', + 'ß' => 'ss', + 'ae' => 'a', + 'oe' => 'o', + 'ue' => 'u', ); foreach ($test as $input => $output) { |