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

it_should_update_upload_preset_when_calling_update_upload_preset() public method

    public function it_should_update_upload_preset_when_calling_update_upload_preset()
    {
        $pid = 'pid1';
        // given
        $this->api->shouldReceive('update_upload_preset')->once()->with($pid, array());
        // when
        $this->cloudinary_wrapper->updateUploadPreset($pid);
    }
CloudinaryWrapperTest