Пример #1
0
 function testCommentContent()
 {
     $costanza_quote = "Divorce is always hard. Especially on the kids. ‘Course I am the result of my parents having stayed together so ya never know.";
     $post_id = $this->factory->post->create();
     $comment_id = $this->factory->comment->create(array('comment_post_ID' => $post_id, 'comment_content' => $costanza_quote));
     $comment = new TimberComment($comment_id);
     $this->assertEquals($costanza_quote, $comment->content());
 }