Ejemplo n.º 1
0
 function testPostPasswordReqd()
 {
     $post_id = $this->factory->post->create();
     $post = new TimberPost($post_id);
     $this->assertFalse($post->password_required());
     $post_id = $this->factory->post->create(array('post_password' => 'jiggypoof'));
     $post = new TimberPost($post_id);
     $this->assertTrue($post->password_required());
 }