Beispiel #1
0
 /**
  *@test
  */
 public function the_content_repo_can_list_the_current_pages()
 {
     $contentRepo = new ContentRepository();
     $contentRepo::makePage('home');
     $contentRepo::makePage('about');
     $this->assertEquals(['about', 'home'], $contentRepo->listPages());
 }