moriyoshi               Wed Oct 23 16:38:19 2002 EDT

  Modified files:              
    /php4/ext/mbstring/tests    casefold.phpt 
  Log:
  Updated the test case
  
  
Index: php4/ext/mbstring/tests/casefold.phpt
diff -u php4/ext/mbstring/tests/casefold.phpt:1.2 
php4/ext/mbstring/tests/casefold.phpt:1.3
--- php4/ext/mbstring/tests/casefold.phpt:1.2   Tue Oct 22 16:34:53 2002
+++ php4/ext/mbstring/tests/casefold.phpt       Wed Oct 23 16:38:18 2002
@@ -2,7 +2,8 @@
 mb_strtoupper() / mb_strtolower() 
 --SKIPIF--
 <?php include('skipif.inc'); ?>
-function_exists('mb_strtolower') or die("SKIP");
+function_exists('mb_strtolower') and
+function_exists('mb_convert_case' ) or die("SKIP");
 --POST--
 --GET--
 --FILE--
@@ -11,10 +12,11 @@
        print mb_strtolower( "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n" );
        print mb_strtoupper( mb_strtolower( "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n" ) );
        print mb_strtoupper( "äëï\n" );
+       print mb_convert_case( "äëï\n", MB_CASE_TITLE );
 ?>
 
 --EXPECT--
 abcdefghijklmnopqrstuvwxyz
 ABCDEFGHIJKLMNOPQRSTUVWXYZ
 ÄËÏ
-
+Äëï



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to