for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace spec\ikoene\Marvel;
use ikoene\Marvel\Client;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
class ClientSpec extends ObjectBehavior
{
function let() {
$this->beConstructedWith(
'your_public_api_key',
'your_private_api_key'
);
}
function it_is_initializable()
$this->shouldHaveType(Client::class);