Changeset 30453
- Timestamp:
- 11/20/2014 02:33:01 PM (10 years ago)
- Location:
- branches/3.8/tests/phpunit/tests/formatting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8/tests/phpunit/tests/formatting/LikeEscape.php
r25002 r30453 9 9 */ 10 10 function test_like_escape() { 11 11 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 12 12 $inputs = array( 13 13 'howdy%', //Single Percent -
branches/3.8/tests/phpunit/tests/formatting/WPTexturize.php
r25002 r30453 78 78 */ 79 79 function test_quotes() { 80 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 80 81 $this->assertEquals('“Quoted String”', wptexturize('"Quoted String"')); 81 82 $this->assertEquals('Here is “<a href="http://example.com">a test with a link</a>”', wptexturize('Here is "<a href="http://example.com">a test with a link</a>"')); … … 108 109 */ 109 110 function test_quotes_before_numbers() { 111 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 110 112 $this->assertEquals('Class of ’99', wptexturize("Class of '99")); 111 113 $this->assertEquals('Class of ’99’s', wptexturize("Class of '99's")); … … 126 128 */ 127 129 function test_other_html() { 130 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 128 131 $this->assertEquals('‘<strong>', wptexturize("'<strong>")); 129 132 $this->assertEquals('‘<strong>Quoted Text</strong>’,', wptexturize("'<strong>Quoted Text</strong>',")); … … 150 153 */ 151 154 function test_wptexturize_quotes_around_numbers() { 155 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 152 156 $this->assertEquals('“12345”', wptexturize('"12345"')); 153 157 $this->assertEquals('‘12345’', wptexturize('\'12345\'')); … … 160 164 */ 161 165 function test_wptexturize_html_comments() { 166 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 162 167 $this->assertEquals('<!--[if !IE]>--><!--<![endif]-->', wptexturize('<!--[if !IE]>--><!--<![endif]-->')); 163 168 $this->assertEquals('<!--[if !IE]>"a 9\' plus a \'9\', maybe a 9\' \'9\' "<![endif]-->', wptexturize('<!--[if !IE]>"a 9\' plus a \'9\', maybe a 9\' \'9\' "<![endif]-->')); … … 170 175 */ 171 176 function test_entity_quote_cuddling() { 177 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 172 178 $this->assertEquals(' “Testing”', wptexturize(' "Testing"')); 173 179 $this->assertEquals('&“Testing”', wptexturize('&"Testing"')); … … 178 184 */ 179 185 function test_apostrophes_before_primes() { 186 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 180 187 $this->assertEquals( 'WordPress 3.5’s release date', wptexturize( "WordPress 3.5's release date" ) ); 181 188 } … … 185 192 */ 186 193 function test_spaces_around_hyphens() { 187 $this->assertEquals( ' – ', wptexturize( ' - ' ) ); 194 $this->markTestSkipped( 'Ticket was fixed in a later release.' ); 195 $this->assertEquals( ' – ', wptexturize( ' - ' ) ); 188 196 $this->assertEquals( ' – ', wptexturize( ' - ' ) ); 189 197 $this->assertEquals( ' – ', wptexturize( ' - ' ) ); 190 198 $this->assertEquals( ' – ', wptexturize( ' - ') ); 191 199 192 $this->assertEquals( ' — ', wptexturize( ' -- ' ) ); 200 $this->assertEquals( ' — ', wptexturize( ' -- ' ) ); 193 201 $this->assertEquals( ' — ', wptexturize( ' -- ' ) ); 194 202 $this->assertEquals( ' — ', wptexturize( ' -- ' ) );
Note: See TracChangeset
for help on using the changeset viewer.