NotFoundSpec.php 536 Bytes
<?php

namespace spec\Cardinity\Exception;

use Cardinity\Method\ResultObject;
use PhpSpec\ObjectBehavior;

class NotFoundSpec extends ObjectBehavior
{
    function let(\RuntimeException $exception, ResultObject $error)
    {
        $this->beConstructedWith(
            $exception,
            $error
        );
    }

    function it_is_initializable()
    {
        $this->shouldHaveType('Cardinity\Exception\NotFound');
    }

    function it_should_return_correct_code()
    {
        $this->getCode()->shouldReturn(404);
    }
}