spec/api/attributes_api_spec.rb in sib-api-v3-sdk-2.1.3 vs spec/api/attributes_api_spec.rb in sib-api-v3-sdk-2.1.4

- old
+ new

@@ -31,25 +31,28 @@ expect(@instance).to be_instance_of(SibApiV3Sdk::AttributesApi) end end # unit tests for create_attribute - # Creates contact attributes + # Creates contact attribute # + # @param attribute_category Category of the attribute + # @param attribute_name Name of the attribute # @param create_attribute Values to create an attribute # @param [Hash] opts the optional parameters - # @return [CreateModel] + # @return [nil] describe 'create_attribute 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 delete_attribute # Deletes an attribute # - # @param attribute_id id of the attribute + # @param attribute_category Category of the attribute + # @param attribute_name Name of the existing attribute # @param [Hash] opts the optional parameters # @return [nil] describe 'delete_attribute test' do it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers @@ -60,9 +63,23 @@ # Lists all attributes # # @param [Hash] opts the optional parameters # @return [GetAttributes] describe 'get_attributes 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_attribute + # Updates contact attribute + # + # @param attribute_category Category of the attribute + # @param attribute_name Name of the existing attribute + # @param update_attribute Values to update an attribute + # @param [Hash] opts the optional parameters + # @return [nil] + describe 'update_attribute test' do it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end