Current Path : /var/test/www/storage2/vendor/cardinity/cardinity-sdk-php/spec/Exception/ |
Current File : /var/test/www/storage2/vendor/cardinity/cardinity-sdk-php/spec/Exception/ForbiddenSpec.php |
<?php namespace spec\Cardinity\Exception; use PhpSpec\ObjectBehavior; use Prophecy\Argument; class ForbiddenSpec extends ObjectBehavior { function it_is_initializable() { $this->shouldHaveType('Cardinity\Exception\Forbidden'); } function it_should_return_correct_code() { $this->getCode()->shouldReturn(403); } }