コード例 #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
ファイル: MultiResponderTest.php プロジェクト: watoki/curir
 private function thenTheResponseBodyShouldBe($str)
 {
     $this->assertEquals($str, $this->response->getBody());
 }