예제 #1
0
 function it_has_teaser_provided_in_content(Content $content, Text $teaser)
 {
     $content->getTeaser()->willReturn($teaser);
     $this->getTeaser()->shouldBe($teaser);
 }
예제 #2
0
파일: Post.php 프로젝트: Rybbow/x-blog
 /**
  * @return Text
  */
 public function getTeaser()
 {
     return $this->content->getTeaser();
 }