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

it_should_call_api_delete_all_resources_when_calling_delete_all_resources() public method

    public function it_should_call_api_delete_all_resources_when_calling_delete_all_resources()
    {
        $this->api->shouldReceive('delete_all_resources')->once()->with(array());
        $this->cloudinary_wrapper->deleteAllResources();
    }
CloudinaryWrapperTest