for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace spec\Knp\RadBundle\ObjectStore;
use PhpSpec\ObjectBehavior;
class FileStoreSpec extends ObjectBehavior
{
function let()
$this->beConstructedWith(tmpfile());
}
function it_should_be_an_object_store()
$this->shouldHaveType('Knp\RadBundle\ObjectStore\ObjectStoreInterface');