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

it_should_call_api_delete_resources_when_calling_delete_resources() public method

    public function it_should_call_api_delete_resources_when_calling_delete_resources()
    {
        $pids = ['pid1', 'pid2'];
        $this->api->shouldReceive('delete_resources')->once()->with($pids, array());
        $this->cloudinary_wrapper->deleteResources($pids);
    }
CloudinaryWrapperTest