Changeset 41887 for trunk/tests/phpunit/tests/post/nav-menu.php
- Timestamp:
- 10/17/2017 08:14:56 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/post/nav-menu.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/nav-menu.php
r41766 r41887 550 550 */ 551 551 function test_wp_delete_customize_changeset_dependent_auto_drafts() { 552 $ nav_created_post_ids = $this->factory()->post->create_many(2,array(552 $auto_draft_post_id = $this->factory()->post->create( array( 553 553 'post_status' => 'auto-draft', 554 554 ) ); 555 $draft_post_id = $this->factory()->post->create( array( 556 'post_status' => 'draft', 557 ) ); 558 $private_post_id = $this->factory()->post->create( array( 559 'post_status' => 'private', 560 ) ); 561 562 $nav_created_post_ids = array( 563 $auto_draft_post_id, 564 $draft_post_id, 565 $private_post_id, 566 ); 555 567 $data = array( 556 568 'nav_menus_created_posts' => array( … … 567 579 'data' => $data, 568 580 ) ); 569 $this->assertInstanceOf( 'WP_Post', get_post( $nav_created_post_ids[0] ) ); 570 $this->assertInstanceOf( 'WP_Post', get_post( $nav_created_post_ids[1] ) ); 581 $this->assertEquals( 'auto-draft', get_post_status( $auto_draft_post_id ) ); 582 $this->assertEquals( 'draft', get_post_status( $draft_post_id ) ); 583 $this->assertEquals( 'private', get_post_status( $private_post_id ) ); 571 584 wp_delete_post( $wp_customize->changeset_post_id(), true ); 572 $this->assertNotInstanceOf( 'WP_Post', get_post( $nav_created_post_ids[0] ) ); 573 $this->assertNotInstanceOf( 'WP_Post', get_post( $nav_created_post_ids[1] ) ); 585 $this->assertFalse( get_post_status( $auto_draft_post_id ) ); 586 $this->assertEquals( 'trash', get_post_status( $draft_post_id ) ); 587 $this->assertEquals( 'private', get_post_status( $private_post_id ) ); 574 588 } 575 589
Note: See TracChangeset
for help on using the changeset viewer.