| 1 | <?php |
||
| 10 | class ResponseSpec extends ObjectBehavior |
||
| 11 | { |
||
| 12 | function let(ResponseInterface $psrResponse) |
||
| 13 | { |
||
| 14 | $this->beConstructedWith($psrResponse); |
||
| 15 | } |
||
| 16 | |||
| 17 | function it_is_initializable() |
||
| 18 | { |
||
| 19 | $this->shouldHaveType(Response::class); |
||
| 20 | $this->shouldImplement(ResponseContract::class); |
||
| 21 | $this->shouldImplement(ResponseInterface::class); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |