Beispiel #1
0
 /**
  *@test
  */
 public function the_content_repo_can_tell_if_a_page_exists()
 {
     $contentRepo = new ContentRepository();
     $contentRepo::makePage('home');
     $this->assertTrue($contentRepo->pageExists('home'));
     $this->assertFalse($contentRepo->pageExists('login'));
 }