JD\Cloudder\Test\CloudinaryWrapperTest::it_should_call_api_delete_resources_by_prefix_when_calling_delete_resources_by_prefix PHP Method

it_should_call_api_delete_resources_by_prefix_when_calling_delete_resources_by_prefix() public method

    public function it_should_call_api_delete_resources_by_prefix_when_calling_delete_resources_by_prefix()
    {
        $prefix = 'prefix';
        $this->api->shouldReceive('delete_resources_by_prefix')->once()->with($prefix, array());
        $this->cloudinary_wrapper->deleteResourcesByPrefix($prefix);
    }
CloudinaryWrapperTest