Changeset 894 in tests for trunk/tests/test_includes_post.php
- Timestamp:
- 07/09/2012 03:32:24 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/test_includes_post.php
r877 r894 382 382 } 383 383 384 /** 385 * @ticket 5364 386 */ 384 387 function test_delete_future_post_cron() { 385 // http://trac.wordpress.org/ticket/5364386 388 // "When I delete a future post using wp_delete_post($post->ID) it does not update the cron correctly." 387 388 #$this->knownWPBug(5364);389 390 389 $future_date = strtotime('+1 day'); 391 390 … … 410 409 } 411 410 412 function test_perm link_without_title() {411 function test_permalink_without_title() { 413 412 // bug: permalink doesn't work if post title is empty 414 413 // wpcom #663, also http://trac.wordpress.org/ticket/5305 … … 436 435 } 437 436 438 function test_attachment_url() {439 }440 437 /** 438 * @ticket 21013 439 */ 441 440 function test_wp_unique_post_slug_with_non_latin_slugs() { 442 $this->knownWPBug(21013);443 444 441 $inputs = array( 445 442 'Αρνάκι άσπρο και παχύ της μάνας του καμάρι, και άλλα τραγούδια', … … 896 893 } 897 894 895 /** 896 * @ticket 12860 897 */ 898 898 function test_funky_post_meta() { 899 $this->knownWPBug(12860);900 901 899 $classy = new StdClass(); 902 900 $classy->ID = 1; … … 922 920 */ 923 921 class WPTestPostTypes extends WP_UnitTestCase { 924 function setUp() {925 parent::setUp();926 }927 928 function tearDown() {929 parent::tearDown();930 }931 932 922 function test_register_post_type() { 933 923 $this->assertNull( get_post_type_object( 'foo' ) );
Note: See TracChangeset
for help on using the changeset viewer.