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

it_should_call_api_delete_resources_by_tag_when_calling_delete_resources_by_tag() public method

    public function it_should_call_api_delete_resources_by_tag_when_calling_delete_resources_by_tag()
    {
        $tag = 'tag1';
        $this->api->shouldReceive('delete_resources_by_tag')->once()->with($tag, array());
        $this->cloudinary_wrapper->deleteResourcesByTag($tag);
    }
CloudinaryWrapperTest