Make WordPress Core

Changeset 694 in tests


Ignore:
Timestamp:
04/22/2012 08:22:03 AM (13 years ago)
Author:
SergeyBiryukov
Message:

convert_chars() test for latin Z with caron. see #WP20503.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-testcase/test_includes_formatting.php

    r688 r694  
    10841084    }
    10851085
     1086    function test_replaces_latin_letter_z_with_caron() {
     1087        $this->knownWPBug(20503);
     1088        $input = "Žž";
     1089        $output = "Žž";
     1090        $this->assertEquals( $output, convert_chars( $input ) );
     1091    }
     1092
    10861093    function test_converts_html_br_and_hr_to_the_xhtml_self_closing_variety() {
    10871094        $inputs = array(
Note: See TracChangeset for help on using the changeset viewer.