Changeset 31195 for trunk/tests/phpunit/tests/comment.php
- Timestamp:
- 01/16/2015 02:38:30 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment.php
r31172 r31195 7 7 function test_wp_update_comment() { 8 8 $post = $this->factory->post->create_and_get( array( 'post_title' => 'some-post', 'post_type' => 'post' ) ); 9 $post2 = $this->factory->post->create_and_get( array( 'post_title' => 'some-post-2', 'post_type' => 'post' ) ); 9 10 $comments = $this->factory->comment->create_post_comments( $post->ID, 5 ); 10 11 $result = wp_update_comment( array( 'comment_ID' => $comments[0], 'comment_parent' => $comments[1] ) ); … … 14 15 $result = wp_update_comment( array( 'comment_ID' => $comments[0], 'comment_parent' => $comments[1] ) ); 15 16 $this->assertEquals( 0, $result ); 17 $result = wp_update_comment( array( 'comment_ID' => $comments[0], 'comment_post_ID' => $post2->ID ) ); 18 $comment = get_comment( $comments[0] ); 19 $this->assertEquals( $post2->ID, $comment->comment_post_ID ); 16 20 } 17 21
Note: See TracChangeset
for help on using the changeset viewer.