=begin #Properties #All HubSpot objects store data in default and custom properties. These endpoints provide access to read and modify object properties in HubSpot. The version of the OpenAPI document: v3 Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.3.1 =end require 'spec_helper' require 'json' # Unit tests for Hubspot::Crm::Properties::GroupsApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'GroupsApi' do before do # run before each test @api_instance = Hubspot::Crm::Properties::GroupsApi.new end after do # run after each test end describe 'test an instance of GroupsApi' do it 'should create an instance of GroupsApi' do expect(@api_instance).to be_instance_of(Hubspot::Crm::Properties::GroupsApi) end end # unit tests for archive # Archive a property group # Move a property group identified by {groupName} to the recycling bin. # @param object_type # @param group_name # @param [Hash] opts the optional parameters # @return [nil] describe 'archive test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for create # Create a property group # Create and return a copy of a new property group. # @param object_type # @param property_group_create # @param [Hash] opts the optional parameters # @return [PropertyGroup] describe 'create test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for get_all # Read all property groups # Read all existing property groups for the specified object type and HubSpot account. # @param object_type # @param [Hash] opts the optional parameters # @return [CollectionResponsePropertyGroup] describe 'get_all test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for get_by_name # Read a property group # Read a property group identified by {groupName}. # @param object_type # @param group_name # @param [Hash] opts the optional parameters # @return [PropertyGroup] describe 'get_by_name test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for update # Update a property group # Perform a partial update of a property group identified by {groupName}. Provided fields will be overwritten. # @param object_type # @param group_name # @param property_group_update # @param [Hash] opts the optional parameters # @return [PropertyGroup] describe 'update test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end