예제 #1
0
파일: BoxFixture.php 프로젝트: watoki/boxes
 public function thenTheResponseShouldBe($body)
 {
     $this->spec->assertEquals(trim($body), trim($this->response->getBody()));
 }
예제 #2
0
파일: Box.php 프로젝트: watoki/boxes
 public function getModel()
 {
     return $this->response->getBody();
 }
예제 #3
0
 private function thenTheResponseBodyShouldBe($str)
 {
     $this->assertEquals($str, $this->response->getBody());
 }