Make WordPress Core

Ticket #28163: 28163.patch

File 28163.patch, 617 bytes (added by binarygary, 8 years ago)

Unit Test for 28163

  • tests/phpunit/tests/user.php

     
    568568        }
    569569
    570570        /**
     571         * @ticket 28163
     572         */
     573        function test_email_exists_umlauts() {
     574                $id = wp_insert_user( array(
     575                        'user_login' => 'umlautuser',
     576                        'user_pass'  => 'password',
     577                        'user_email' => 'ümlautüser@ümlautdomain.com',
     578                ) );
     579                $this->assertEquals( $id, email_exists( 'mlautser@mlautdomain.com' ) );
     580        }
     581
     582        /**
    571583         * @ticket 30647
    572584         */
    573585        function test_user_update_email_error() {